View Single Post
  #13  
Old 29th November 2008, 17:01
Ashur's Avatar
Ashur Ashur is offline
Senior Member
 
Join Date: Jun 2008
Posts: 523
Default
Quote:
Originally Posted by KustomizeR View Post
How can i add the [ center ] [ /center ] tags ?
/include/globalfunctions.php (please back it up first)

find
PHP Code:
    $s preg_replace("/\[u\]((\s|.)+?)\[\/u\]/i""<u>\\1</u>"$s); 
add after
PHP Code:
// [center]Centered[/center]
$s preg_replace("/\[center\]((\s|.)+?)\[\/center\]/ise""<div align=\"center\">\\1</div>"$s); 
let me know if that works :)
also not sure which one to use in "ise" it might be just "i" or "s*/i" so let me know which one worked
__________________
Say NO to private tracking
Running TorrentHoster 2.5 on IraqiGate.org

Last edited by Ashur; 29th November 2008 at 17:10.
Reply With Quote