I want to try middle aligning smilies, "align=middle". I know how to to this while posting (in addon_smilies2.php):
if ($aPost) { foreach($GLOBALS['smilies'] as $key=>$val) $postText=str_replace($key, "[imgmiddle]".$GLOBALS['main_url']."/img/".$GLOBALS['dirname']."/".$val."[ /img]", $postText);
But I can't get it while editing posts using:
elseif ($aEdit) { foreach($GLOBALS['smilies'] as $key=>$val) $postText=str_replace("[img(middle)?]".$GLOBALS['main_url']."/img/".$GLOBALS['dirname']."/".$val ."[/img]", $key, $postText); |