View Single Post
  #5  
Old 25th October 2010, 13:49
lateam's Avatar
lateam lateam is offline
Senior Member
 
Join Date: Apr 2009
France
Posts: 40
Smile Shoutbox changes
up the pic in the rootClick the image to open in full size.

open /include/languages/francais/global.lang.php

add

PHP Code:
'a'                =>' =>'
open /shoutbox/outputinfo.php

find:


PHP Code:
     $pics .= '<img src="' $BASEURL '/' $pic_base_url 'disabled.gif" alt="' $lang->global['disabled'] . '"  title="' $lang->global['disabled'] . '" border="0" style="vertical-align: middle; margin-center: 4pt; white-space: nowrap;" />
'
;
      } 
add after
PHP Code:
    $ss='<a onclick="SmileIT(\'[color=#FF0000]'.$shout_row['username'].'[/color]' $lang->global['a'] . '\',\'shoutbox\',\'shouter_comment\');return false" href="#"><img src=\'target.gif\' title="repondre"></a>'
find:
PHP Code:
       $shouter_name '<a target="_blank" href="' ts_seo ($shout_row['userid'], $shout_row['username']) . '">' get_user_color ($shout_row['username'], $shout_row['namestyle']) . '</a> ' $pics
and modify in this way
PHP Code:
     $shouter_name $ss.'<a target="_blank" href="' ts_seo ($shout_row['userid'], $shout_row['username']) . '">' get_user_color ($shout_row['username'], $shout_row['namestyle']) . '</a> ' $pics
Reply With Quote