From: skodak Date: Sun, 22 Jun 2008 22:32:16 +0000 (+0000) Subject: MDL-15071 fixed typo X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=98e1919368bbefbc9d3ad69f5b58f1dacf8095dd;p=moodle.git MDL-15071 fixed typo --- diff --git a/lib/dml/pdo_moodle_database.php b/lib/dml/pdo_moodle_database.php index 52aee4c43c..a84e4415e5 100644 --- a/lib/dml/pdo_moodle_database.php +++ b/lib/dml/pdo_moodle_database.php @@ -70,7 +70,7 @@ abstract class pdo_moodle_database extends moodle_database { * @return array A key=>value array of PDO driver-specific connection options */ protected function get_pdooptions() { - return array(PDO::ATTR_PERSISTENT => $this->dbpresist); + return array(PDO::ATTR_PERSISTENT => $this->dbpersist); } protected function configure_dbconnection() {