--- coder/coder_review/coder_review.module Base (1.26) +++ coder/coder_review/coder_review.module Locally Modified (Based On 1.26) @@ -1898,14 +1898,14 @@ function coder_review_theme() { return array( 'coder_review' => array( - 'arguments' => array( + 'variables' => array( 'name' => NULL, 'filename' => NULL, 'results' => NULL, ), ), 'coder_review_warning' => array( - 'arguments' => array( + 'variables' => array( 'warning' => NULL, 'severity_name' => NULL, 'lineno' => NULL, @@ -1913,23 +1913,21 @@ ), ), 'coder_review_warning_msg' => array( - 'arguments' => array( + 'variables' => array( 'error' => NULL, ), ), 'coder_review_table_cols' => array( - 'arguments' => array( - 'form' => NULL, + 'render element' => 'form', ), - ), 'drupalapi' => array( - 'arguments' => array( + 'variables' => array( 'function' => NULL, 'version' => substr(VERSION, 0, 1), ), ), 'phpapi' => array( - 'arguments' => array( + 'variables' => array( 'function' => NULL, ), ), --- coder/coder_upgrade/coder_upgrade.module_old 2009-11-12 22:05:08.000000000 -0700 +++ coder/coder_upgrade/coder_upgrade.module 2009-11-12 22:04:30.000000000 -0700 @@ -156,6 +156,7 @@ function coder_upgrade_conversions_form( // Create the list of upgrade options from the coder upgrade plug-ins. // Maintain a secondary list based on title only, to make sorting possible. $upgrades_all = _coder_upgrade_upgrades(); + $upgrades_sort = array(); foreach ($upgrades_all as $name => $upgrade) { $upgrade_options[$name] = isset($upgrade['link']) ? l($upgrade['title'], $upgrade['link']) : $upgrade['title']; if (isset($upgrade['description'])) {