|
From: Florin C B. <ory...@us...> - 2013-06-17 02:51:58
|
Update of /cvsroot/mxbb/core/includes/sessions/phpbb3 In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv11022/sessions/phpbb3 Modified Files: session.php Log Message: Index: session.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/sessions/phpbb3/session.php,v retrieving revision 1.52 retrieving revision 1.53 diff -C2 -d -r1.52 -r1.53 *** session.php 16 Jun 2013 02:14:54 -0000 1.52 --- session.php 17 Jun 2013 02:51:56 -0000 1.53 *************** *** 1730,1734 **** } } ! $this->theme = $row; $db->sql_freeresult($result); --- 1730,1734 ---- } } ! $this->theme = &$row; $db->sql_freeresult($result); *************** *** 1750,1754 **** AND i.imageset_id = s.imageset_id"; $result = $db->sql_query($sql, 3600); ! $this->theme = $db->sql_fetchrow($result); $db->sql_freeresult($result); $style = $this->theme['style_id']; --- 1750,1754 ---- AND i.imageset_id = s.imageset_id"; $result = $db->sql_query($sql, 3600); ! $this->theme = &$db->sql_fetchrow($result); $db->sql_freeresult($result); $style = $this->theme['style_id']; |