Vergleich inc/functions_indicators.php - 1.6.2 - 1.6.4

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * Website: http://mybb.com
* License: http://mybb.com/about/license
*

 * $Id: functions_indicators.php 4941 2010-05-15 18:17:38Z RyanGordon $

 * $Id: functions_indicators.php 5321 2011-01-13 14:20:31Z Tomm $

 */

/**

 */

/**

Zeile 75Zeile 75
				$comma = ',';
}
}

				$comma = ',';
}
}

		



		if(!empty($tids))
{
$count = 0;

		if(!empty($tids))
{
$count = 0;

			
// We set a limit to 100 otherwise it'll become too processor intensive, especially if we have many threads.
$query = $db->query("
SELECT lastpost, tid, fid
FROM ".TABLE_PREFIX."threads
WHERE visible=1 AND closed NOT LIKE 'moved|%' AND fid IN ($fid) AND tid IN ($tids) AND lastpost > '{$cutoff}'
LIMIT 100
");


// We've read at least some threads, are they here?
$query = $db->simple_select("threads", "lastpost, tid, fid", "visible=1 AND closed NOT LIKE 'moved|%' AND fid IN ($fid) AND lastpost > '{$cutoff}'", array("limit" => 100));






			while($thread = $db->fetch_array($query))
{
if($thread['lastpost'] > intval($threadsread[$thread['tid']]) && $thread['lastpost'] > intval($forumsread[$thread['fid']]))

			while($thread = $db->fetch_array($query))
{
if($thread['lastpost'] > intval($threadsread[$thread['tid']]) && $thread['lastpost'] > intval($forumsread[$thread['fid']]))

Zeile 94Zeile 90
					++$count;
}
}

					++$count;
}
}

 


			return $count;
}

			return $count;
}

 

// Not read any threads?
return false;

	}
else
{

	}
else
{