سلام دوستان!
مامبو 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
