From: <var...@us...> - 2016-05-23 11:38:57
|
Revision: 9837 http://sourceforge.net/p/phpwiki/code/9837 Author: vargenau Date: 2016-05-23 11:38:54 +0000 (Mon, 23 May 2016) Log Message: ----------- Use consistent case Modified Paths: -------------- trunk/lib/WikiDB/backend/PDO.php Modified: trunk/lib/WikiDB/backend/PDO.php =================================================================== --- trunk/lib/WikiDB/backend/PDO.php 2016-05-23 10:13:16 UTC (rev 9836) +++ trunk/lib/WikiDB/backend/PDO.php 2016-05-23 11:38:54 UTC (rev 9837) @@ -175,10 +175,10 @@ $this->_dbh->commit(); } - function rollback() + function rollBack() { if ($this->_hasTransactions) - $this->_dbh->rollback(); + $this->_dbh->rollBack(); } /* no result */ @@ -633,7 +633,7 @@ $this->beginTransaction(); //$dbh->CommitLock($recent_tbl); if (($id = $this->_get_pageid($pagename, false)) === false) { - $this->rollback(); + $this->rollBack(); return false; } $mtime = time(); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |