=== modified file 'uc_file/translations/uc_file.pot' (properties changed: -x to +x)
=== modified file 'uc_file/uc_file.admin.inc' (properties changed: -x to +x)
--- uc_file/uc_file.admin.inc	2009-06-07 05:11:21 +0000
+++ uc_file/uc_file.admin.inc	2009-06-29 18:56:04 +0000
@@ -15,6 +15,7 @@
  * Form builder for file products admin
  */
 function uc_file_admin_files_form($form_state) {
+  $form_state['storage']['step'] = isset($form_state['storage']['step']) ?  $form_state['storage']['step'] : NULL;
 
   switch ($form_state['storage']['step']) {
 
@@ -40,7 +41,7 @@
 }
 
 function uc_file_admin_files_form_show_files($form_state) {
-
+  $form = array();
   $form['#tree'] = TRUE;
 
   $form['#header'] = array(
@@ -129,7 +130,7 @@
 
     case 'uc_file_delete':
      $file_ids = array();
-     if (is_array($form_state['values']['file_select'])) {
+     if (isset($form_state['values']['file_select']) && is_array($form_state['values']['file_select'])) {
        foreach ($form_state['values']['file_select'] as $fid => $value) {
          if ($value) {
            $file_ids[] = $fid;
@@ -201,6 +202,7 @@
 
 function uc_file_admin_files_form_action($form_state) {
 
+  $form = array();
   // Perform File Action (Upload, Delete, hooked in actions)
   $file_ids = array();
   foreach ((array)$form_state['values']['file_select'] as $fid => $value) {
@@ -454,6 +456,7 @@
 }
 
 function _uc_file_build_js_file_display($file_ids) {
+  $result = array();
 
   // Gather the files if recursion is selected. Get 'em all ready to be punched into
   // the file list.

=== modified file 'uc_file/uc_file.ca.inc' (properties changed: -x to +x)
--- uc_file/uc_file.ca.inc	2009-04-06 16:37:54 +0000
+++ uc_file/uc_file.ca.inc	2009-06-29 18:57:39 +0000
@@ -19,6 +19,7 @@
  * to token in the email.
  */
 function uc_file_ca_entity() {
+  $entities = array();
 
   // CA entity for a file expiration object.
   $entities['uc_file_expiration'] = array(
@@ -33,6 +34,7 @@
  * Implementation of hook_ca_predicate().
  */
 function uc_file_ca_predicate() {
+  $configurations =  array();
 
   // Renew all the files on an order when the status matches what's set in the files admin settings.
   $configurations['uc_file_renewal'] = array(
@@ -102,6 +104,7 @@
  * Implementation of hook_ca_action().
  */
 function uc_file_ca_action() {
+  $actions = array();
 
   $actions['uc_file_order_renew'] = array(
     '#title' => t('Renew the files on an order.'),
@@ -139,6 +142,7 @@
  * Implementation of hook_ca_trigger().
  */
 function uc_file_ca_trigger() {
+  $triggers = array();
 
   $args = array(
     'order' => array(

=== modified file 'uc_file/uc_file.css' (properties changed: -x to +x)
=== modified file 'uc_file/uc_file.info' (properties changed: -x to +x)
=== modified file 'uc_file/uc_file.install' (properties changed: -x to +x)
=== modified file 'uc_file/uc_file.js' (properties changed: -x to +x)
=== modified file 'uc_file/uc_file.module' (properties changed: -x to +x)
--- uc_file/uc_file.module	2009-06-17 15:27:58 +0000
+++ uc_file/uc_file.module	2009-06-29 19:01:58 +0000
@@ -135,6 +135,7 @@
  * Implementation of hook_user_form().
  */
 function uc_file_user_form(&$account, $category = NULL) {
+  $form = array();
 
   // We only want the account edit form.
   if (!user_access('administer users') || (is_null($category) || $category != 'account')) {
@@ -439,6 +440,7 @@
 // Theme the download table at the user account page.
 function theme_uc_file_hook_user_file_downloads($form) {
 
+  $rows = array();
   $header = array(
     array('data' => t('Remove'    )),
     array('data' => t('Filename'  )),
@@ -504,7 +506,7 @@
  * Theme the file dialog at the user account page.
  */
 function theme_uc_file_hook_user_file($form) {
-
+  $output = '';
   // Enclose this in <p> so it won't fall out of the fieldset if there are no downloads.
   $output .= '<p>'. drupal_render($form['file_message']) .'</p>';
 
@@ -609,6 +611,7 @@
  * Implementation of hook_product_feature().
  */
 function uc_file_product_feature() {
+  $features = array();
   $features[] = array(
     'id' => 'file',
     'title' => t('File download'),
@@ -646,6 +649,7 @@
  * Implementation of hook_token_list().
  */
 function uc_file_token_list($type = 'all') {
+  $tokens = array();
   if ($type == 'uc_file' || $type == 'ubercart' || $type == 'all') {
     $tokens['uc_file']['file-downloads'] = t('The list of file download links (if any) associated with an order');
   }
@@ -657,6 +661,7 @@
  * Implementation of hook_token_values().
  */
 function uc_file_token_values($type, $object = NULL) {
+  $values = array();
   switch ($type) {
     case 'uc_file':
       if (!empty($object)) {
@@ -948,6 +953,8 @@
 function uc_file_feature_settings() {
 
   $statuses = array();
+  $form = array();
+
   foreach (uc_order_status_list('general') as $status) {
     $statuses[$status['id']] = $status['title'];
   }

=== modified file 'uc_file/uc_file.pages.inc' (properties changed: -x to +x)
