Author: fredol
MOD Description: Pretty much as last posts since last visit, but only with new topics!

MOD Version: 1.0.2
Download File: View new topics since last visit v1.0.2.mod
mods overview page: View
File Size: 4104 Bytes
Security Score:
padyn wrote: Having a bit of trouble in the search.php . I looked at the install instructions but it's a bit confusing to me. Can anyone lend some assistance?
NightriderXP wrote: My question is, does the "New Topics Since Last Visit" count reset when the "Mark all forums read" function is used?
padyn wrote: I know I have messed up in the search.php area, just not sure exactly what it is that I modified incorrectly. I have since uploaded the initial search.php without any mods to it.
Code: Select all
Warning: Cannot modify header information - headers already sent by (output started at /home/sgisuppo/public_html/phpBB2/language/lang_english/lang_main.php:1028) in /home/sgisuppo/public_html/phpBB2/includes/page_header.php on line 466
Warning: Cannot modify header information - headers already sent by (output started at /home/sgisuppo/public_html/phpBB2/language/lang_english/lang_main.php:1028) in /home/sgisuppo/public_html/phpBB2/includes/page_header.php on line 468
Warning: Cannot modify header information - headers already sent by (output started at /home/sgisuppo/public_html/phpBB2/language/lang_english/lang_main.php:1028) in /home/sgisuppo/public_html/phpBB2/includes/page_header.php on line 469
Code: Select all
#-----[ FIND ]-----
#
#Note: full line is longer
if ( $search_id == 'newposts' || $search_id == 'egosearch'
#
#-----[ IN-LINE FIND ]-----
#
)
#
#-----[ IN-LINE BEFORE, ADD ]-----
#
|| $search_id == 'newtopics'
#
#-----[ FIND ]-----
#
if ( $search_id == 'newposts' || $search_id == 'egosearch'
#
#-----[ IN-LINE FIND ]-----
#
( $search_author !=
#
#-----[ IN-LINE BEFORE, ADD ]-----
#
$search_id == 'newtopics' ||
Zanowin wrote: also this part of the mod:for the add-ins do I do that to both lines each? or the first add-in to the first occurance of the [find] and the second add-in to the second occurance of the [find] (which is the same thing)Code: Select all
#-----[ FIND ]----- # #Note: full line is longer if ( $search_id == 'newposts' || $search_id == 'egosearch' # #-----[ IN-LINE FIND ]----- # ) # #-----[ IN-LINE BEFORE, ADD ]----- # || $search_id == 'newtopics' # #-----[ FIND ]----- # if ( $search_id == 'newposts' || $search_id == 'egosearch' # #-----[ IN-LINE FIND ]----- # ( $search_author != # #-----[ IN-LINE BEFORE, ADD ]----- # $search_id == 'newtopics' ||