=== modules/system.module ================================================================== --- modules/system.module (revision 22267) +++ modules/system.module (local) @@ -142,7 +142,7 @@ // Screenshot column. $screenshot = dirname($value->filename) .'/screenshot.png'; - $row[] = file_exists($screenshot) ? theme('image', $screenshot, t('Screenshot for %theme theme', array('%theme' => $value->name)), '', 'class="screenshot"', false) : t('no screenshot'); + $row[] = file_exists($screenshot) ? theme('image', $screenshot, t('Screenshot for %theme theme', array('%theme' => $value->name)), '', array ('class' => 'screenshot'), false) : t('no screenshot'); // Information field. $field = ''. $value->name .''; @@ -419,7 +419,7 @@ $row = array(); // Screenshot column. - $row[] = file_exists($info->screenshot) ? theme('image', $info->screenshot, t('Screenshot for %theme theme', array('%theme' => $info->name)), '', 'class="screenshot"', false) : t('no screenshot'); + $row[] = file_exists($info->screenshot) ? theme('image', $info->screenshot, t('Screenshot for %theme theme', array('%theme' => $info->name)), '', array ( 'class' => 'screenshot'), false) : t('no screenshot'); // Information field. $row[] = "$info->name
" . dirname($info->filename) . '';