Index: trunk/phase3/includes/db/DatabasePostgres.php |
— | — | @@ -929,7 +929,7 @@ |
930 | 930 | wfDebug("Schema \"" . $desired_schema . "\" already in the search path\n"); |
931 | 931 | } else { |
932 | 932 | /** |
933 | | - * Apped our schema (e.g. 'mediawiki') in front |
| 933 | + * Append our schema (e.g. 'mediawiki') in front |
934 | 934 | * of the search path |
935 | 935 | * Fixes bug 15816 |
936 | 936 | */ |
— | — | @@ -937,6 +937,7 @@ |
938 | 938 | array_unshift( $search_path, |
939 | 939 | $this->addIdentifierQuotes( $desired_schema )); |
940 | 940 | $this->setSearchPath( $search_path ); |
| 941 | + $this->mCoreSchema = $desired_schema; |
941 | 942 | wfDebug("Schema \"" . $desired_schema . "\" added to the search path\n"); |
942 | 943 | } |
943 | 944 | } else { |