Hallo,
Na 2 uur bezig te zijn met deze mod die 10 minuten installatie vraagt volgens handleiding

. Zit ik volgens mij nog met een probleempje zie afbeelding.
Ik kan niks invullen bij Sub-Forum
Ik zat juist met een probleem bij index.php ik vond iets niet door plaatsing van een andere mod
dit stond in de handleiding
- Spoiler: bekijk
- #
#-----[ FIND ]------------------------------------------------
#
if ( !empty($new_topic_data[$forum_id]) )
{
$forum_last_post_time = 0;
while( list($check_topic_id, $check_post_time) = @each($new_topic_data[$forum_id]) )
{
if ( empty($tracking_topics[$check_topic_id]) )
{
$unread_topics = true;
$forum_last_post_time = max($check_post_time, $forum_last_post_time);
}
else
{
if ( $tracking_topics[$check_topic_id] < $check_post_time )
{
$unread_topics = true;
$forum_last_post_time = max($check_post_time, $forum_last_post_time);
}
}
}
if ( !empty($tracking_forums[$forum_id]) )
{
if ( $tracking_forums[$forum_id] > $forum_last_post_time )
{
$unread_topics = false;
}
}
if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) )
{
if ( $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all'] > $forum_last_post_time )
{
$unread_topics = false;
}
}
}
#
#-----[ REPLACE WITH ]----------------------------------------
#
// Added by Easy Sub-Forums MOD
$unread_topics=check_unread($forum_id);
// END Added by Easy Sub-Forums MOD
Ik vond er
- Spoiler: bekijk
- {
//MOD Keep_Unread_2 * Forum_unread flags set earlier
$unread_topic = $forum_unreads[$forum_id];
$folder_image = ( $unread_topic ) ? $images['forum_new'] : $images['forum'];
$folder_alt = ( $unread_topic ) ? $lang['New_posts'] : $lang['No_new_posts'];
}
en ik maakte er dit van
- Spoiler: bekijk
- {
//MOD Keep_Unread_2 * Forum_unread flags set earlier
$unread_topic = $forum_unreads[$forum_id];
$folder_image = ( $unread_topic ) ? $images['forum_new'] : $images['forum'];
$folder_alt = ( $unread_topic ) ? $lang['New_posts'] : $lang['No_new_posts'];
// Added by Easy Sub-Forums MOD
$unread_topics=check_unread($forum_id);
// END Added by Easy Sub-Forums MOD
}
Iemand een idee wat ik fout deed? Of zou het ergens anders zitten?
Alvast bedankt voor de hulp, Danny
Sorry als ik dit anders moest posten