Index: /branches/dwhittle/1.1/lib/storage/sfMySQLSessionStorage.class.php =================================================================== --- /branches/dwhittle/1.1/lib/storage/sfMySQLSessionStorage.class.php (revision 10037) +++ /branches/dwhittle/1.1/lib/storage/sfMySQLSessionStorage.class.php (revision 10131) @@ -51,5 +51,5 @@ // failed to destroy session - throw new sfDatabaseException(sprintf('% cannot destroy session id "%s" (%s).', get_class($this), $id, mysql_error())); + throw new sfDatabaseException(sprintf('%s cannot destroy session id "%s" (%s).', get_class($this), $id, mysql_error())); } @@ -75,5 +75,5 @@ if (!$this->db_query($sql)) { - throw new sfDatabaseException(sprintf('% cannot delete old sessions (%s).', get_class($this), mysql_error())); + throw new sfDatabaseException(sprintf('%s cannot delete old sessions (%s).', get_class($this), mysql_error())); } @@ -123,5 +123,5 @@ // can't create record - throw new sfDatabaseException(sprintf('% cannot create new record for id "%s" (%s).', get_class($this), $id, mysql_error())); + throw new sfDatabaseException(sprintf('%s cannot create new record for id "%s" (%s).', get_class($this), $id, mysql_error())); } } @@ -158,5 +158,5 @@ // failed to write session data - throw new sfDatabaseException(sprintf('% cannot write session data for id "%s" (%s).', get_class($this), $id, mysql_error())); + throw new sfDatabaseException(sprintf('%s cannot write session data for id "%s" (%s).', get_class($this), $id, mysql_error())); }