代碼: 選擇全部
###############################################
## Hack Title: Keep Em Moving
## Hack Version: 1.0.1
## Author: bummer
## Description: This add-on will keep your animated smilies animated after clicking on one.
## Compatibility: 2.0.2 - 2.0.11
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit: 2
## templates/subSilver/posting_body.tpl
## templates/subSilver/posting_smilies.tpl
##
## Included Files: 0
##
## History:
## Jan. 1, 2002: Version 1.0.0: Initial release
## Jan. 14, 2003: Version 1.0.1: Removed an unneeded closing link tag.
##
## Author Notes:
## Install the following for all template themes you use.
##
## Support: http://forums.webxtractions.com/
## Copyright: ?003-2004 Keep Em Moving 1.0.1 - Bill Beardslee
##
###############################################
## You downloaded this hack from forums.webxtractions.com, as such this is not a official phpBB hack.
## This means that support can not be found for this at phpBB.com, so please visit http://forums.webxtractions.com/
###############################################
##
###############################################
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License
## as published by the Free Software Foundation; either version 2
## of the License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## http://www.gnu.org/copyleft/gpl.html
###############################################
#
#-----[ OPEN ]--------------------------------------------
#
templates/subSilver/posting_body.tpl
#
#-----[ FIND ]--------------------------------------------
#
<td><a href="javascript:emoticon('{smilies_row.smilies_col.SMILEY_CODE}')"><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}"></a></td>
#
#-----[ REPLACE WITH ]------------------------------------
#
<td><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}"></td>
#
#-----[ OPEN ]--------------------------------------------
#
templates/subSilver/posting_smilies.tpl
#
#-----[ FIND ]--------------------------------------------
#
<td><a href="javascript:emoticon('{smilies_row.smilies_col.SMILEY_CODE}')"><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}"></a></td>
#
#-----[ REPLACE WITH ]------------------------------------
#
<td><img src="{smilies_row.smilies_col.SMILEY_IMG}" border="0" alt="{smilies_row.smilies_col.SMILEY_DESC}" title="{smilies_row.smilies_col.SMILEY_DESC}"></td>
#
#-----[ SAVE & CLOSE ALL FILES ]--------------------------
#
#End of Hack