From 0d865cc02b0115d3ffbf31f9bad4d48b62488c1f Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Mon, 12 Jul 2010 15:10:40 +0000 Subject: #851140 by Damien Tournoud: Fixed DatabaseSchema::getPrefixInfo() is *severely* broken. --- includes/database/schema.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/database/schema.inc b/includes/database/schema.inc index 07212418f..d7ae5eb36 100644 --- a/includes/database/schema.inc +++ b/includes/database/schema.inc @@ -187,7 +187,7 @@ abstract class DatabaseSchema implements QueryPlaceholderInterface { // contains a schema reference in which case we will change the schema key // to the value before the period in the prefix. Everything after the dot // will be prefixed onto the front of the table. - if ($pos = strpos($info['prefix'], '.') !== FALSE) { + if (($pos = strpos($info['prefix'], '.')) !== FALSE) { // Grab everything before the period. $info['schema'] = substr($info['prefix'], 0, $pos); // Grab everything after the dot, and prefix on to the table. -- cgit v1.2.3