############################################################## 
## MOD Title:          Topic Calendar New Events 2
## MOD Author:         -=ET=- < space_et@tiscali.fr > (N/A) http://www.golfexpert.net/phpbb
## MOD Description:    This MOD fix the abnormal posts widening
##                     when a large image is included in a message
## MOD Version:        1.0.0
## Compatibility:      2.0.13
##
## Installation Level: Easy
## Installation Time:  1 Minutes (1mn by EasyMOD of Nuttzy)
## Files To Edit:      1
##      /templates/subSilver/subSilver.cfg
##		/templates/subSilver/calendar_body.tpl
##		calendar.php
##
## Included Files:     0
##
############################################################## 
# 
#-----[ COPY ]------------------------------------------------ 
# 
copy newevent.png to templates/subSilver/images/lang_english/newevent.png 
# 
#-----[ OPEN ] -------------- 
# 
templates/subSilver/subSilver.cfg 
# 
#-----[ FIND ] -------------- 
# 
$images['post_new'] = "$current_template_images/{LANG}/post.gif"; 
# 
#----- [ AFTER, ADD ] ------------ 
# 
$images['event_new'] = "$current_template_images/{LANG}/newevent.png"; 
# 
# 
#-----[ OPEN ] -------------- 
# 
templates/subSilver/calendar_body.tpl 
# 
#-----[ FIND ] -------------- 
# 
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center"> 
# 
#----- [ AFTER, ADD ] ------------ 
# 
<tr> 
     <td align="left" valign="middle" width="50"><a href="{U_POST_NEW_EVENT}"><img src="{NEW_EVENT_IMG}" border="0" alt="{L_POST_NEW_EVENT}" /></a></td> 
</tr> 
# 
#-----[ OPEN ] -------------- 
# 
calendar.php 
# 
#-----[ FIND ] -------------- 
# 
#   'U_CALENDAR'   => append_sid("./calendar.$phpEx"), 
	'U_CALENDAR'
# 
#----- [ AFTER, ADD ] ------------ 
# 
   'NEW_EVENT_IMG' => $images['event_new'], 
   'U_POST_NEW_EVENT' => append_sid("posting.$phpEx?mode=newtopic&amp;" . POST_FORUM_URL . "=22"), 
# 
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
# 
# EoM