| |
| |
|
|
|
|
| |
|
| |
|
| :: |
| Author |
Message |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Fri Dec 29, 2006 10:40 am Post subject: Re: best mod for subfora |
|
|
In the subforum mod:
| Code: | #
#-----[ FIND ]------------------------------------------
#
while( $row = $db->sql_fetchrow($result) )
{
#
#-----[ AFTER, ADD ]------------------------------------------
#
// Begin Simple Subforums MOD
$list[] = $row;
}
$forum_list = '';
for( $i = 0; $i < count($list); $i++ )
{
if( !$list[$i]['forum_parent'] )
{
$row = $list[$i];
$parent_hidden = true;
// End Simple Subforums MOD |
the find: | Code: | while( $row = $db->sql_fetchrow($result) )
{ |
occurs two times in the file (includes/functions_admin.php)
Is it going to be added both places ?? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
|
| Back to top |
|
 |
euroman PR0

Joined: 21 Oct 2006 Posts: 81
|
Posted: Fri Dec 29, 2006 11:31 am Post subject: Re: best mod for subfora |
|
|
Yes you are right
GOSH This must be the longest mod in existence  |
|
|
| Back to top |
|
 |
|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |