############################################################## 
## MOD Title:           ImageShack Upload Panel MOD - SQR + Move Submit Panel Below Message Add-on
## MOD Author:          NightriderXP < phpBB@4fxearth.net > (N/A) http://4fxearth.net/phpBB2
## MOD Description:     This adds the ImageShack Upload panel below the SQR Message window.  In 
## 	   					addition, it moves the Submit and Preview buttons below the Message window 
##						too in order to remove the gap below the message window and the top of the 
##						Options... 
##
## MOD Version:         1.0.0
##
## Installation Level:  Easy
## Installation Time:   ~5 Minutes ( 1 Minute w/EasyMod )
##
## Files To Edit:       2
## 		 				image_shack.php
##						templates/subSilver/viewtopic_quickreply.tpl                      
##
## Included Files:      0
##
## License:             http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
############################################################## 
## Author Notes: 
##                 DEMO @ http://4fxearth.net/phpBB2
##                      + http://mods.DanielSchaad.com
##
############################################################## 
##
## MOD History:
##
##   2007-06-7 - Version 1.0.0 
##      - creation date			
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
# 
#-----[ OPEN ]------------------------------------------ 
#
includes/viewtopic_quickreply.php
# 
#-----[ FIND ]------------------------------------------ 
#
'L_NOTIFY_ON_REPLY' =>

# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
// BEG: ImageShack Upload Panel MOD
	'ISUP_TITLE' => $lang['Isup_title'],
	'ISUP_HOWTO' => sprintf($lang['Isup_howto'], '<a href="' . append_sid("faq.$phpEx") . '" target="_blank">', '</a>'),
	'ISUP_MANAGE' => sprintf($lang['Isup_manage'], '<a href="http://reg.imageshack.us/v_images.php" target="_blank">', '</a>'),
	'U_ISUP_PANEL' => append_sid("image_shack.$phpEx"),
// END: ImageShack Upload Panel MOD

# 
#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_quickreply.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
<textarea name="message"
# 
#-----[ FIND ]------------------------------------------ 
#
</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
#
		  <tr>
	  	  	  <td  colspan="9" class="row2" colspan="2" align="center" height="28"> {S_HIDDEN_FORM_FIELDS}<input type="submit" tabindex="5" name="preview" class="mainoption" value="{L_PREVIEW}" />&nbsp;<input type="submit" accesskey="s" tabindex="6" name="post" class="mainoption" value="{L_SUBMIT}" /></td>
		  </tr>
		  <!-- BEGIN switch_user_logged_in -->
		  <tr>
	  	  	  <td colspan="9" class="row2" valign="middle" nowrap="nowrap">
	  	  	  	  <iframe src="{U_ISUP_PANEL}" allowtransparency="true" scrolling="no" noresize="noresize" border="0" framespacing="0" frameborder="0" width="100%" height="40" nowrap="nowrap">{ISUP_NO_IFRAME}</iframe>
			  </td>
		  </tr>
		  <!-- END switch_user_logged_in -->
# 
#-----[ FIND ]------------------------------------------ 
# The lines of code are much longer...
#
<tr>
{S_HIDDEN_FORM_FIELDS}
</tr>
</table>
# 
#-----[ REPLACE WITH ]------------------------------------------ 
#
  </table>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
# 
# EoM