Index: CHANGELOG.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/journal/CHANGELOG.txt,v
retrieving revision 1.4.2.1
diff -u -p -r1.4.2.1 CHANGELOG.txt
--- CHANGELOG.txt	21 Feb 2008 12:00:15 -0000	1.4.2.1
+++ CHANGELOG.txt	24 Feb 2008 04:37:24 -0000
@@ -6,7 +6,7 @@ Journal x.x-x.x, xxxx-xx-xx
 
 Journal 6.x-1.x, xxxx-xx-xx
 ---------------------------
-#224657 by sun: Fixed update_script_selection_form missing in skipped form_ids.
+#224657 by sun: Fixed PHP warning if $form['#submit'] isn't set.
 
 
 Journal 6.x-1.0, 2008-02-14
Index: journal.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/journal/journal.module,v
retrieving revision 1.5.2.1
diff -u -p -r1.5.2.1 journal.module
--- journal.module	21 Feb 2008 12:00:15 -0000	1.5.2.1
+++ journal.module	24 Feb 2008 04:36:47 -0000
@@ -69,7 +69,7 @@ function journal_form_alter(&$form, &$fo
   $entry_required = FALSE;
   
   // Shift system_settings_form buttons.
-  if (in_array('system_settings_form_submit', $form['#submit'])) {
+  if (in_array('system_settings_form_submit', (array)$form['#submit'])) {
     $weight = isset($form['buttons']['#weight']) ? $form['buttons']['#weight'] : 0;
     $form['buttons']['#weight'] = $weight + 1;
     $journal_weight = $weight;
@@ -125,8 +125,6 @@ function journal_skip_form($form_id) {
     'search_theme_form',
     'user_filter_form',
     'user_login_block',
-    // Skip update.php form.
-    'update_script_selection_form',
   );
   if (in_array($form_id, $skip_ids)) {
     return TRUE;
