summaryrefslogtreecommitdiffstats
path: root/wp-admin/install-helper.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-04-04 16:44:15 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-04-04 16:44:15 +0000
commit7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc (patch)
treec6fd23b598f3994eddb18cb1c0f2e8d95ff054fa /wp-admin/install-helper.php
parentf650f48c048bfbbb2ae702b6425d87e39358d748 (diff)
downloadwordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.tar.gz
wordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.tar.xz
wordpress-mu-7740e89de3e1bc0cc636120e3ca8ab9e97e4d3cc.zip
Merged with WordPress 2.5, unstable, only for testing
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1218 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin/install-helper.php')
-rw-r--r--wp-admin/install-helper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/wp-admin/install-helper.php b/wp-admin/install-helper.php
index b53376e..d124b1a 100644
--- a/wp-admin/install-helper.php
+++ b/wp-admin/install-helper.php
@@ -16,7 +16,7 @@ function maybe_create_table($table_name, $create_ddl) {
}
}
//didn't find it try to create it.
- $q = $wpdb->query($create_ddl);
+ $wpdb->query($create_ddl);
// we cannot directly tell that whether this succeeded!
foreach ($wpdb->get_col("SHOW TABLES",0) as $table ) {
if ($table == $table_name) {
@@ -41,7 +41,7 @@ function maybe_add_column($table_name, $column_name, $create_ddl) {
}
}
//didn't find it try to create it.
- $q = $wpdb->query($create_ddl);
+ $wpdb->query($create_ddl);
// we cannot directly tell that whether this succeeded!
foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
if ($column == $column_name) {
@@ -63,7 +63,7 @@ function maybe_drop_column($table_name, $column_name, $drop_ddl) {
foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
if ($column == $column_name) {
//found it try to drop it.
- $q = $wpdb->query($drop_ddl);
+ $wpdb->query($drop_ddl);
// we cannot directly tell that whether this succeeded!
foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
if ($column == $column_name) {