Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Shoutbox_panel.php tvarkymas

Parašė Dandžu· 2007 Lap. 15 23:11:31
#1

Taigi pastebėjau kad neviename saite shoutbox'e nėra
Šaukyklos archyvas(man pačiam taip buvo). Dabar parodysiu kaip padaryti kad jį rodytų:
Atsidarome infusions/shoutbox_panel/shoutbox_panel.php jame susirandame:
if ($numrows > $settings['numofshouts']) {
echo "<center>\n<img src='".THEME."images/bullet.gif' alt=''>
<a href='".INFUSIONS."shoutbox_panel/shoutbox_archive.php' class='side'>".$locale['126']."</a>
<img src='".THEME."images/bulletb.gif' alt=''></center>\n";
}
} else {
echo "<div align='left'>".$locale['127']."</div>\n";
}

Keičiame į:
if ($numrows > $settings['numofshouts']) {
echo "<center>
<img src='".THEME."images/bullet.gif' alt='' border='0'>&nbsp;
<a href='".INFUSIONS."shoutbox_panel/shoutbox_archive.php' class='side'>".$locale['126']."</a>&nbsp;
<img src='".THEME."images/bulletb.gif' alt='' border='0'>
</center>\n";
} else {
echo "<center>
<img src='".THEME."images/bullet.gif' alt='' border='0'>&nbsp;
<a href='".INFUSIONS."shoutbox_panel/shoutbox_archive.php' class='side'>".$locale['126']."</a>&nbsp;
<img src='".THEME."images/bulletb.gif' alt='' border='0'>
</center>\n";
}