|
From: Bart v. B. <ba...@us...> - 2001-12-27 15:04:47
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv32733 Modified Files: privmsg.php Log Message: Prevent privmsg.php doing a full join between privmsgs and users table if no folder specified Index: privmsg.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -r1.70 -r1.71 *** privmsg.php 2001/12/24 18:42:48 1.70 --- privmsg.php 2001/12/27 15:04:43 1.71 *************** *** 1744,1747 **** --- 1744,1749 ---- AND u.user_id = pm.privmsgs_from_userid ) )"; break; + default: + message_die(GENERAL_ERROR, "Could not query private message information. No folder specified.", "", __LINE__, __FILE__, $sql); } *************** *** 2011,2013 **** include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> \ No newline at end of file --- 2013,2015 ---- include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> |