Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: showthread.php 5125 2010-07-27 07:28:03Z RyanGordon $
| * $Id: showthread.php 5448 2011-04-16 16:42:29Z Tomm $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 207 | Zeile 207 |
---|
} else {
|
} else {
|
$forum_read = my_get_array_cookie("forumread", $fid);
| $forum_read = intval(my_get_array_cookie("forumread", $fid));
|
} if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read)
| } if($mybb->settings['threadreadcut'] > 0 && $mybb->user['uid'] && $thread['lastpost'] > $forum_read)
|
Zeile 229 | Zeile 229 |
---|
if(!$lastread) {
|
if(!$lastread) {
|
$readcookie = $threadread = my_get_array_cookie("threadread", $thread['tid']);
| $readcookie = $threadread = intval(my_get_array_cookie("threadread", $thread['tid']));
|
if($readcookie > $forum_read) { $lastread = $readcookie;
| if($readcookie > $forum_read) { $lastread = $readcookie;
|
Zeile 240 | Zeile 240 |
---|
} }
|
} }
|
if($cutoff && $lastread < $cutoff) { $lastread = $cutoff; }
| if($cutoff && $lastread < $cutoff) { $lastread = $cutoff; }
|
// Next, find the proper pid to link to. $options = array(
| // Next, find the proper pid to link to. $options = array(
|
Zeile 252 | Zeile 252 |
---|
"order_by" => "dateline", "order_dir" => "asc" );
|
"order_by" => "dateline", "order_dir" => "asc" );
|
| $lastread = intval($lastread);
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}'", $options); $newpost = $db->fetch_array($query);
| $query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}'", $options); $newpost = $db->fetch_array($query);
|