neo_one2199
05-31-2008, 10:33 PM
سلام دوستان!
مامبو 4.6.4 که به تازگی ازاد شده یک باگ داره!
عنوان کاستوم ماژول را درست می کنید نشان نمیده!!! :o
برای حل مشکل باید کد زیر را در فایل (includes/frontend.html.php ) خط 40 تا 69 را تغییر دهید.
if($isBuffered) {
echo $module->buffer;
return;
}
?>
<table cellpadding="0" cellspacing="0" class="moduletable<?php echo $moduleclass_sfx; ?>">
<?php
if ( $module->showtitle != 0 ) {
?>
<tr>
<th valign="top">
<?php echo $module->title; ?>
</th>
</tr>
<?php
}
if ( $module->content ) {
?>
<tr>
<td>
<?php
echo $module->content;
?>
</td>
</tr>
<?php
}
}
// feed output
به این کد تغییر دهید:
?>
<table cellpadding="0" cellspacing="0" class="moduletable<?php echo $moduleclass_sfx; ?>">
<?php
if ( $module->showtitle != 0 ) {
?>
<tr>
<th valign="top">
<?php echo $module->title; ?>
</th>
</tr>
<?php
}
if ( $module->content ) {
?>
<tr>
<td>
<?php
if($isBuffered)
echo $module->buffer;
else
echo $module->content;
?>
</td>
</tr>
<?php
}
}
// feed output
امیدوارم در نسخه فارسی تیم مامبولرن اینو در نظر بگیرن.
باتشکر.
NEO
مامبو 4.6.4 که به تازگی ازاد شده یک باگ داره!
عنوان کاستوم ماژول را درست می کنید نشان نمیده!!! :o
برای حل مشکل باید کد زیر را در فایل (includes/frontend.html.php ) خط 40 تا 69 را تغییر دهید.
if($isBuffered) {
echo $module->buffer;
return;
}
?>
<table cellpadding="0" cellspacing="0" class="moduletable<?php echo $moduleclass_sfx; ?>">
<?php
if ( $module->showtitle != 0 ) {
?>
<tr>
<th valign="top">
<?php echo $module->title; ?>
</th>
</tr>
<?php
}
if ( $module->content ) {
?>
<tr>
<td>
<?php
echo $module->content;
?>
</td>
</tr>
<?php
}
}
// feed output
به این کد تغییر دهید:
?>
<table cellpadding="0" cellspacing="0" class="moduletable<?php echo $moduleclass_sfx; ?>">
<?php
if ( $module->showtitle != 0 ) {
?>
<tr>
<th valign="top">
<?php echo $module->title; ?>
</th>
</tr>
<?php
}
if ( $module->content ) {
?>
<tr>
<td>
<?php
if($isBuffered)
echo $module->buffer;
else
echo $module->content;
?>
</td>
</tr>
<?php
}
}
// feed output
امیدوارم در نسخه فارسی تیم مامبولرن اینو در نظر بگیرن.
باتشکر.
NEO