Code: Select all
SQL ERROR [ mysqli ]
Duplicate entry '699-144225' for key 'PRIMARY' [1062]
SQL
INSERT INTO phpbb3_topics_track (user_id, topic_id, forum_id, mark_time) VALUES ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398'), ('699', '144225', '56', '1467987398')
The file icon matches the "Search unread" icon in the Quick links menu.pierredu wrote: Thu Jan 26, 2017 1:43 pm Why did you use the file icon and not the asterisk icon (fa-asterisk) as in version 3.1.x ?
Can you test this fix? I removed these two lines in the latest version, looks like they are needed after all.
Code: Select all
240 while ($row = $this->db->sql_fetchrow($result))
241 {
242
243 $sql_insert_ary[] = array(
244 'user_id' => $user_id,
245 'topic_id' => $topic_id,
246 'forum_id' => $forum_id,
247 'mark_time' => $forum_tracking_info,
248 );
249 }
Code: Select all
'topic_id' => $row['topic_id'];
'topic_id' => $row['topic_id'],
and not 'topic_id' => $row['topic_id'];
(comma and not semicolon).Ofcorse! My mistake when writing post.pierredu wrote: Mon Feb 06, 2017 2:03 pm Fine, congrats for the debugging work.
The line should be'topic_id' => $row['topic_id'],
and not'topic_id' => $row['topic_id'];
(comma and not semicolon).
Thanks for finding the fix wojtek.wojtek64 wrote: Mon Feb 06, 2017 8:53 am Line 245 need modification to:Code: Select all
'topic_id' => $row['topic_id'];
fa-file
in this line to any FA icon you want.theme/images
folder, include a CSS file and add some rules to it, similar to the core icons.m_approve
permission to find out if a certain post was soft- or hard-deleted. Furthermore users were able to find out if a post was moved to a forum where they don't have read permission.