Scris: 05-Dec-2006, 21:04:55
poi yo nu am nici un prefix! ce pun? / ?
forumul phpBB in limba romana. Opinii, implementari, ajutor, instructiuni si download.
https://phpbb3.ro/community/
Cod: Selectaţi tot
ALTER TABLE prefix_forums ADD forum_icon VARCHAR(100);
ALTER TABLE prefix_categories ADD cat_icon VARCHAR(100);
Cod: Selectaţi tot
ALTER TABLE phpbb_forums ADD forum_icon VARCHAR(100);
ALTER TABLE phpbb_categories ADD cat_icon VARCHAR(100);
TI-am explicat , ti-am dat mura-n gura ce trebuie sa faci ... CE NU MERGE ?!FREE scrie:nu mere nik!
Cod: Selectaţi tot
ALTER TABLE phpbb_forums ADD forum_icon VARCHAR(100);
ALTER TABLE phpbb_categories ADD cat_icon VARCHAR(100);
Cod: Selectaţi tot
[FIND]:
if ( $display_forums )
{
$template->assign_block_vars('catrow', array(
'CAT_ID' => $cat_id,
'CAT_DESC' => $category_rows[$i]['cat_title'],
'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
);
[REPLACE]:
if ( $display_forums )
{
if ($category_rows[$i]['cat_icon'] != '')
{$c_icon = ' <img> ';}
else {$c_icon = '';}
$template->assign_block_vars('catrow', array(
'CAT_ID' => $cat_id,
'CAT_DESC' => $category_rows[$i]['cat_title'],
'CAT_ICON' => $c_icon,
'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
);
Cod: Selectaţi tot
if ( $display_forums )
{
Cod: Selectaţi tot
if ($category_rows[$i]['cat_icon'] != '')
{$c_icon = ' <img> ';}
else {$c_icon = '';}
Cod: Selectaţi tot
'CAT_DESC' => $category_rows[$i]['cat_title'],
Cod: Selectaţi tot
'CAT_ICON' => $c_icon,
Cod: Selectaţi tot
if ( $display_forums )
{
$template->assign_block_vars('catrow', array(
'CAT_ID' => $cat_id,
'CAT_DESC' => $category_rows[$i]['cat_title'],
'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
);