[Phpfreechat-svn] SF.net SVN: phpfreechat: [559] trunk/themes/default/templates/chat.html.tpl.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-06-09 08:43:40
|
Revision: 559 Author: kerphi Date: 2006-06-09 01:43:34 -0700 (Fri, 09 Jun 2006) ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=559&view=rev Log Message: ----------- Bug fix: the special html characteres in smileys were broken Modified Paths: -------------- trunk/themes/default/templates/chat.html.tpl.php Modified: trunk/themes/default/templates/chat.html.tpl.php =================================================================== --- trunk/themes/default/templates/chat.html.tpl.php 2006-06-08 19:58:15 UTC (rev 558) +++ trunk/themes/default/templates/chat.html.tpl.php 2006-06-09 08:43:34 UTC (rev 559) @@ -62,7 +62,7 @@ <div id="<?php echo $prefix; ?>smileys"> <?php foreach($smileys as $s_file => $s_str) { ?> - <img src="<?php echo $s_file; ?>" alt="<?php echo $s_str[0]; ?>" title="<?php echo $s_str[0]; ?>" onclick="pfc.insertSmiley(String('<?php echo $s_str[0]; ?>').unescapeHTML());" /> + <img src="<?php echo $s_file; ?>" alt="<?php echo $s_str[0]; ?>" title="<?php echo $s_str[0]; ?>" onclick="pfc.insertSmiley('<?php echo $s_str[0]; ?>');" /> <?php } ?> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |