Problem, guys!JinYoshi wrote:Open file index.php
in line +/- 120, find this:replace with this:Code: Select all
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'mark=forums') : '',
Thanks for the issues..Code: Select all
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? '?mark=forums' : '',
But the redirect is go to /your_forum/index.php <-- hmmph.. i do not find this..
Well,.. the point is the mark all Forum is fixed.
Let me know if you find any trouble/bugs.. thanks cheers
If i dont fix this bug, then when i click on link "Mark forums read" - nothink happening...
If i change... (in index.php)
...this...
Code: Select all
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'hash=' . generate_link_hash('global') . '&mark=forums') : '',
Code: Select all
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? '?mark=forums' : '',
Any ideas? Help!