########################################################
## MOD Title:    BBCode Buttons Organizer for SQR
## MOD Author:   Nightrider < area51@4fxearth.net > (n/a) http://4fxearth.net/phpBB2
## MOD Description:  Allows for neater display of additional quick BBCode buttons in SQR panel.
## MOD Version:  1.0.0
## 
## Installation Level:  EASY
## Installation Time:   1 minute
##                      templates/subSilver/posting_body.tpl
## Included Files:      n/a
############################################################## 
## For Security Purposes, Please Check: http://www.phpbb.com/mods/ for the 
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code 
## to enter into your phpBB Forum. As such, phpBB will not offer support for MOD's not offered 
## in our MOD-Database, located at: http://www.phpbb.com/mods/ 
########################################################
## Author Notes:
##     + requires Multi BBCode MOD 1.4.0 or later
########################################################
## MOD History:
##    2007-04-3 - Version 1.0.0
##         + initial release
##
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
#
# IMPORTANT: you MUST first install the Multi BBCode Mod v1.4.0 
##			 and the mbbc_sqr.mod included in the SQR contrib folder 
#            available at http://www.phpbb.com/mods/
#
# 
#-----[ OPEN ]---------------------------------
# 
templates/subSilver/viewtopic_quickreply.tpl
#
#-----[ FIND ]------------------------------------------
# 
bbtags = new Array(
#
#-----[ REPLACE WITH ]---------------------------------
# You will need to modify this to match the bbtags from your posting_body.tpl file
#
bbtags = new Array('[b]','[/b]','[i]','[/i]','[u]','[/u]','[quote]','[/quote]','[code]','[/code]','[list][*]','[/list]','[list=1][*]','[/list]','[img]','[/img]','[url=]','[/url]','[s]','[/s]','[sup]','[/sup]','[sub]','[/sub]','[h1]','[/h1]','[h2]','[/h2]','[h3]','[/h3]','[table]','[/table]','[serif]','[/serif]','[reverse]','[/reverse]','[hr]','[hr]','[hide]','[/hide]','[mono]','[/mono]','[h4]','[/h4]','[h5]','[/h5]','[h6]','[/h6]','[row]','[row]','[sans]','[/sans]','[rainbow]','[/rainbow]','[ref=dictionary]','[/ref]','[ref=thesaurus]','[/ref]','[ref=translator]','[/ref]','[you]','[you]','<center>','</center>','[color=red]','[/color]','[col]','[col]','[flash]','[/flash]','[google]','[/google]','[quick]','[/quick]','[video]','[/video]','[wiki]','[/wiki]','<blockquote>','</blockquote>');

# 
#-----[ FIND ]---------------------------------
#
		  <!-- BEGIN switch_advanced_qr -->


		  </tr>
# 
#-----[ REPLACE WITH ]---------------------------------
#
			<!-- BEGIN XBBcode -->
			<tr align="center" valign="middle"> 
			  <!-- BEGIN BB -->
			  <td><span class="genmed">
			  <input type="button" class="button" accesskey="{XBBcode.BB.KEY}" name="{XBBcode.BB.NAME}" value="{XBBcode.BB.VALUE}" style="width: {XBBcode.BB.WIDTH}px" onClick="{XBBcode.BB.STYLE}" onMouseOver="helpline('{XBBcode.BB.VALUE}')" />
			  </span></td>
			  <!-- END BB -->
			</tr>
			<!-- END XBBcode -->
		  </tr>
		  <!-- BEGIN switch_advanced_qr -->
#
#-----[ SAVE/CLOSE ALL FILES ]---------------------------------
#
# EoM