Commit fcf70618 authored by doctrine's avatar doctrine

Fixed a small bug in Doctrine_Lib.class.php where the non-existant...

Fixed a small bug in Doctrine_Lib.class.php where the non-existant Doctrine_Session::getStateAsString was called instead of Doctrine_Lib::getSessionStateAsString.
parent 4c582bec
......@@ -68,7 +68,7 @@ class Doctrine_Lib {
public function getSessionAsString(Doctrine_Session $session) {
$r[] = "<pre>";
$r[] = "Doctrine_Session object";
$r[] = "State : ".Doctrine_Session::getStateAsString($session->getState());
$r[] = "State : ".Doctrine_Lib::getSessionStateAsString($session->getState());
$r[] = "Open Transactions : ".$session->getTransactionLevel();
$r[] = "Open Factories : ".$session->count();
$sum = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment