Checking that the session handle worked

Hadn't used MySQL mode in a while, seems to work fine. Going to add memcached support back in as well.
This commit is contained in:
Josh Sherman 2013-02-12 00:11:56 -05:00
parent 927d04452a
commit 4b414783f0
3 changed files with 13 additions and 11 deletions

View file

@ -9,7 +9,7 @@
* Redistribution of these files must retain the above copyright notice.
*
* @author Josh Sherman <pickles@joshtronic.com>
* @copyright Copyright 2007-2012, Josh Sherman
* @copyright Copyright 2007-2013, Josh Sherman
* @license http://www.opensource.org/licenses/mit-license.html
* @package PICKLES
* @link https://github.com/joshtronic/pickles
@ -166,7 +166,7 @@ class Database_PDO_Common extends Database_Common
foreach ($backtrace as $file)
{
if (isset($file['class']))
if (isset($file['class'], $file['line']))
{
$files[] = $file['class'] . ':' . $file['line'];
}