is possible to add the anonym.to in SMF 1.1 RC2?? (sorry for my bad english :( )
8)
do you mean make all [ url] links use anonymn.to/?link ??
if so... then yes, add the code into the url tag processing function in subs.php
can you explain me precisely (im new with php :D )
find
$data = preg_replace(array('~(?<=[\s>\.(;\'"]|^)((?:http|https|ftp|ftps)://[\w\-_%@:|]+(?:\.[\w\-_%]+)*(?::\d+)?(?:/[\w\-_\~%\.@,\?&;=#+:\'\\\\]*|[\(\{][\w\-_\~%\.@,\?&;=#(){}+:\'\\\\]*)*[/\w\-_\~%@\?;=#}\\\\])~i', '~(?<=[\s>(\'<]|^)(www(?:\.[\w\-_]+)+(?::\d+)?(?:/[\w\-_\~%\.@,\?&;=#+:\'\\\\]*|[\(\{][\w\-_\~%\.@,\?&;=#(){}+:\'\\\\]*)*[/\w\-_\~%@\?;=#}\\\\])~i'), array('[url]$1[/url]', '[url=http://$1]$1[/url]'), $data);
I'm not so hot on pregreplace myself... but that's the line that you're going to modify (or add another pregreplace after)
Any news? :-[ :-[ :-[
Read this.
http://www.php.net/manual/en/reference.pcre.pattern.syntax.php
Read the line given by Kindred.
Then do it yourself. This is a good chance for you to practice on regular expression, something you'll find useful in you future PHP experience.