From d07480357b473a257be973d9604c5b5f157f6ae5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 9 Nov 2007 07:43:09 +0000 Subject: [PATCH] - Patch #176264 by Wim Monstrey: killed a warning. --- modules/system/system.admin.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index af34383cffc..1afc7e0f65b 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -2061,7 +2061,7 @@ function theme_system_themes_form($form) { $row = array(); $row[] = drupal_render($form[$key]['screenshot']); $row[] = $theme; - $row[] = $info['version']; + $row[] = isset($info['version']) ? $info['version'] : ''; $row[] = array('data' => $status, 'align' => 'center'); if ($form['theme_default']) { $row[] = array('data' => drupal_render($form['theme_default'][$key]), 'align' => 'center');