From 4618cb715de0e01d011b10ffe724189f6b87b94b Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Sat, 23 May 2009 23:42:28 +0000 Subject: [PATCH] Initialize $table variable in wp-admin/themes.php, props mdawaffe, fixes #9923 git-svn-id: https://develop.svn.wordpress.org/trunk@11443 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/themes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 5ff2d35075..0d2f653a42 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -166,6 +166,7 @@ $style = ''; $theme_names = array_keys($themes); natcasesort($theme_names); +$table = array(); $rows = ceil(count($theme_names) / 3); for ( $row = 1; $row <= $rows; $row++ ) for ( $col = 1; $col <= 3; $col++ )