1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-10 18:27:20 +02:00

Merge branch 'w07_MDL-26351_20_instquotes' of git://github.com/skodak/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2011-02-15 12:32:39 +01:00
commit 9aaa767c80

@ -56,7 +56,7 @@ class postgres_sql_generator extends sql_generator {
public $rename_key_sql = null; //SQL sentence to rename one key (PostgreSQL doesn't support this!)
//TABLENAME, OLDKEYNAME, NEWKEYNAME are dynamically replaced
protected $strd_strings = null; // '' or \' quotes
protected $std_strings = null; // '' or \' quotes
/**
* Reset a sequence to the id field of a table.
@ -407,7 +407,7 @@ class postgres_sql_generator extends sql_generator {
}
public function addslashes($s) {
// Postgres is gradually switching to ANSY quotes, we need to check what is expected
// Postgres is gradually switching to ANSI quotes, we need to check what is expected
if (!isset($this->std_strings)) {
$this->std_strings = ($this->mdb->get_field_sql("select setting from pg_settings where name = 'standard_conforming_strings'") === 'on');
}