Vergleich inc/class_session.php - 1.2.10 - 1.2.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*

 * $Id: class_session.php 3278 2007-08-23 02:23:28Z Tikitiki $

 * $Id: class_session.php 3574 2007-12-20 03:14:31Z Tikitiki $

 */

class session

 */

class session

Zeile 326Zeile 326
		// Update or create the session.
if(!defined("NO_ONLINE"))
{

		// Update or create the session.
if(!defined("NO_ONLINE"))
{

			if($this->sid > 0)

			if(!empty($this->sid))

			{
$this->update_session($this->sid, $mybb->user['uid']);
}

			{
$this->update_session($this->sid, $mybb->user['uid']);
}

Zeile 395Zeile 395
		// Update the online data.
if(!defined("NO_ONLINE"))
{

		// Update the online data.
if(!defined("NO_ONLINE"))
{

			if($this->sid > 0)

			if(!empty($this->sid))

			{
$this->update_session($this->sid);
}

			{
$this->update_session($this->sid);
}