Thread: shout image
View Single Post
  #2  
Old 19th September 2011, 11:55
cooly's Avatar
cooly cooly is offline
Senior Member
 
Join Date: Jun 2011
United Kingdom
Posts: 26
Default
Its a simple addon of bbcode.

In ajaxchat/format_shout.php search..

Code:
    @fclose($f);
add after...

Code:
   
    $s = preg_replace("/\[img\]((http)+(s)?:\/\/[^\s'\"<>]+(\.gif|\.jpg|\.png|\.php))\[\/img\]/", "<a href=\"\\1\" target=\"_new\" rel=\"thumbnail\"><img border=0 src=\"\\1\" style=\"width: 100px;\"></a>", $s);
    $s = preg_replace("/\[IMG\]((http)+(s)?:\/\/[^\s'\"<>]+(\.gif|\.jpg|\.png|\.php))\[\/IMG\]/", "<a href=\"\\1\" target=\"_new\" rel=\"thumbnail\"><img border=0 src=\"\\1\" style=\"width: 100px;\"></a>", $s);
Reply With Quote
The Following User Says Thank You to cooly For This Useful Post:
zhoutai (21st September 2011)