 |
 |
 |
 |
#317573 - 09/18/08 01:15 AM
Re: Topic Views Help
[Re: FREAK1]
|
Enthusiast
Registered: 02/25/07
Posts: 304
Loc: The Netherlands
|
You need to modify 2 files: find: /scripts/showthreaded.inc.php if ($_SESSION['current_topic'] != $main_topic_id) {
$query = "
insert into {$config['TABLE_PREFIX']}TOPIC_VIEWS
(TOPIC_ID)
values
( ? )
";
$dbh -> do_placeholder_query($query,array($main_topic_id),__LINE__,__FILE__);
$_SESSION['current_topic'] = $main_topic_id;
}
Replace with: $query = "
insert into {$config['TABLE_PREFIX']}TOPIC_VIEWS
(TOPIC_ID)
values
( ? )
";
$dbh -> do_placeholder_query($query,array($main_topic_id),__LINE__,__FILE__);
$_SESSION['current_topic'] = $main_topic_id;
/scripts/showflat.inc.php if ($_SESSION['current_topic'] != $current) {
$query = "
insert into {$config['TABLE_PREFIX']}TOPIC_VIEWS
(TOPIC_ID)
values
( ? )
";
$dbh -> do_placeholder_query($query,array($current),__LINE__,__FILE__);
$_SESSION['current_topic'] = $current;
}
Replace with: $query = "
insert into {$config['TABLE_PREFIX']}TOPIC_VIEWS
(TOPIC_ID)
values
( ? )
";
$dbh -> do_placeholder_query($query,array($current),__LINE__,__FILE__);
$_SESSION['current_topic'] = $current;
_________________________
|
|
Top
|
|
|
|
 |
 |
 |
 |
|
|