? comment_form_submit_redirect_fix-D7-rev2.patch
? comment_form_submit_redirect_fix-D7.patch
? rename_drupal_execute_rev2.patch
? modules/aggregator/.directory
Index: includes/batch.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/batch.inc,v
retrieving revision 1.32
diff -u -p -r1.32 batch.inc
--- includes/batch.inc	26 Jan 2009 14:08:40 -0000	1.32
+++ includes/batch.inc	22 Mar 2009 12:59:15 -0000
@@ -213,7 +213,7 @@ function _batch_process() {
   $set_changed = TRUE;
 
   // If this batch was marked for progressive execution (e.g. forms submitted by
-  // drupal_execute()), initialize a timer to determine whether we need to
+  // drupal_form_submit()), initialize a timer to determine whether we need to
   // proceed with the same batch phase when a processing time of 1 second has
   // been exceeded.
   if ($batch['progressive']) {
Index: includes/form.inc
===================================================================
RCS file: /cvs/drupal/drupal/includes/form.inc,v
retrieving revision 1.324
diff -u -p -r1.324 form.inc
--- includes/form.inc	14 Mar 2009 20:13:26 -0000	1.324
+++ includes/form.inc	22 Mar 2009 12:59:21 -0000
@@ -38,7 +38,7 @@
  * @endcode
  *
  * Forms can also be built and submitted programmatically without any user input
- * using the drupal_execute() function.
+ * using the drupal_form_submit() function.
  *
  * For information on the format of the structured arrays used to define forms,
  * and more detailed explanations of the Form API workflow, see the
@@ -343,7 +343,7 @@ function form_set_cache($form_build_id, 
  *   form submission.
  * @param ...
  *   Any additional arguments are passed on to the functions called by
- *   drupal_execute(), including the unique form constructor function.
+ *   drupal_form_submit(), including the unique form constructor function.
  *   For example, the node_edit form requires that a node object be passed
  *   in here when it is called.
  * For example:
@@ -354,7 +354,7 @@ function form_set_cache($form_build_id, 
  * $form_state['values']['mail'] = 'robouser@example.com';
  * $form_state['values']['pass'] = 'password';
  * $form_state['values']['op'] = t('Create new account');
- * drupal_execute('user_register', $form_state);
+ * drupal_form_submit('user_register', $form_state);
  *
  * // Create a new node
  * $form_state = array();
@@ -364,9 +364,9 @@ function form_set_cache($form_build_id, 
  * $form_state['values']['body'] = 'This is the body text!';
  * $form_state['values']['name'] = 'robo-user';
  * $form_state['values']['op'] = t('Save');
- * drupal_execute('story_node_form', $form_state, (object)$node);
+ * drupal_form_submit('story_node_form', $form_state, (object)$node);
  */
-function drupal_execute($form_id, &$form_state) {
+function drupal_form_submit($form_id, &$form_state) {
   if (!isset($form_state['args'])) {
     $args = func_get_args();
     array_shift($args);
@@ -398,7 +398,7 @@ function drupal_execute($form_id, &$form
  * @param ...
  *   Any additional arguments needed by the unique form constructor
  *   function. Generally, these are any arguments passed into the
- *   drupal_get_form() or drupal_execute() functions after the first
+ *   drupal_get_form() or drupal_form_submit() functions after the first
  *   argument. If a module implements hook_forms(), it can examine
  *   these additional arguments and conditionally return different
  *   builder functions as well.
@@ -507,7 +507,7 @@ function drupal_process_form($form_id, &
       // If batches were set in the submit handlers, we process them now,
       // possibly ending execution. We make sure we do not react to the batch
       // that is already being processed (if a batch operation performs a
-      // drupal_execute).
+      // drupal_form_submit).
       if ($batch =& batch_get() && !isset($batch['current_set'])) {
         // The batch uses its own copies of $form and $form_state for
         // late execution of submit handlers and post-batch redirection.
@@ -525,7 +525,7 @@ function drupal_process_form($form_id, &
       // bundle, and the $form_state['rebuild'] flag has not been set,
       // we're finished and should redirect to a new destination page
       // if one has been set (and a fresh, unpopulated copy of the form
-      // if one hasn't). If the form was called by drupal_execute(),
+      // if one hasn't). If the form was called by drupal_form_submit(),
       // however, we'll skip this and let the calling function examine
       // the resulting $form_state bundle itself.
       if (!$form_state['programmed'] && empty($form_state['rebuild']) && empty($form_state['storage'])) {
Index: modules/aggregator/aggregator.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.admin.inc,v
retrieving revision 1.25
diff -u -p -r1.25 aggregator.admin.inc
--- modules/aggregator/aggregator.admin.inc	24 Feb 2009 16:48:18 -0000	1.25
+++ modules/aggregator/aggregator.admin.inc	22 Mar 2009 12:59:23 -0000
@@ -338,7 +338,7 @@ function aggregator_form_opml_submit($fo
 
     $form_state['values']['title'] = $feed['title'];
     $form_state['values']['url'] = $feed['url'];
-    drupal_execute('aggregator_form_feed', $form_state);
+    drupal_form_submit('aggregator_form_feed', $form_state);
   }
 
   $form_state['redirect'] = 'admin/content/aggregator';
