BUG In Posting_body.tpl - Php? V2.0.0.86
The text area is leaking at the bottom when one previews the text?
And then it chops it off when one submits the post.
So we do it
again and submit it without previewing it.
###############
The Script being cut off #################
Enabled-Code was removed from the Tablet Themes because it is difficult to capture on a touch-screen.
However, some may want to use the Tablet Themes as default and may want to put the Enabled Code Back.
Here's How to do it:
In each Tablet Theme you want to add it to.
Open:
play.php
Find:
Before Add:
if($row1_type == 1) {
$file = "$game_folder/$gameid2"; $info = getimagesize($file); $width = $info[0]; $height = $info[1];
if(empty($info)) { echo '';
}else{
if($enabledcode_on == 1){
echo '
'.IMG_THL.' '.$lang['enabled_code'].' '.IMG_THR.''.SCRST.'
<table class="width100" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="content-a" colspan="2">
<div align="center">
<textarea cols="75" rows="4">';
if($row1_type == 1){
echo '
<object type="application/x-shockwave-flash" data="'.GAMES.''.$row1_file.'" width="'.$width.'" height="'.$height.'">
<param name="movie" value="'.GAMES.''.$row1_file.'" /></object><br /><a href="'.DIR_PATH.'">'.SITENAME.'</a>';
}else{
echo ''.$enabled_code.'';
}
echo '
</textarea>
</div>
</td>
</tr>
</table>
'.SCRSB.''.IMG_THB.'';
}
}
}
Apparently it's not happening here? But this is the same on XAMPP and the Web-Server.