From 3f942844dea9a4dbaadefb4906a2856d9db140df Mon Sep 17 00:00:00 2001 From: azaozz 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: http://svn.automattic.com/wordpress/trunk@11443 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/themes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 5ff2d3507..0d2f653a4 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++ )