GetSimple Support Forum

Full Version: question about security
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey everybody
im using g.simp. in a rtl language in order to support fancty urls i did these changes:
1.installed slug Transliteration
2.changed 
$url = clean_url(to7bit(str_replace(array_keys($a),array_values($a),$t)));
to
$url =$t;

3.changed 
#RewriteRule /?([A-Za-z0-9_-]+)/?$ index.php?id=$1 [QSA,L]
to
RewriteRule /?([^/]*)/?$ index.php?id=$1 [QSA,L] 


i want to know is what i did safe?