diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-18 15:48:14 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-12-18 15:48:14 +0000 |
commit | 87dd0ef063ea5f36ed2d0e16506131f381ddcda0 (patch) | |
tree | 426fe74490b77d61af996c4327ab8f8514b8614a | |
parent | e38ae5735ed7143d9febb7994b21744b28fb78d2 (diff) | |
download | brdo-87dd0ef063ea5f36ed2d0e16506131f381ddcda0.tar.gz brdo-87dd0ef063ea5f36ed2d0e16506131f381ddcda0.tar.bz2 |
#201997 by webernet: fix bad variable name in update requirements check introduced in #194310
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index f56aebe40..443bfd42c 100644 --- a/update.php +++ b/update.php @@ -553,7 +553,7 @@ function update_fix_compatibility() { $query = db_query("SELECT name, type, status FROM {system} WHERE status = 1 AND type IN ('module','theme')"); while ($result = db_fetch_object($query)) { if (update_check_incompatibility($result->name, $result->type)) { - $incompatible[] = $name; + $incompatible[] = $result->name; } } if (!empty($incompatible)) { |