? 621064.deploy.plan-list-title.patch Index: deploy.plans.admin.inc =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/deploy/Attic/deploy.plans.admin.inc,v retrieving revision 1.1.2.1 diff -u -p -r1.1.2.1 deploy.plans.admin.inc --- deploy.plans.admin.inc 19 Mar 2009 04:26:13 -0000 1.1.2.1 +++ deploy.plans.admin.inc 2 Nov 2009 16:13:46 -0000 @@ -155,6 +155,10 @@ function deploy_list_form($form_state, $ // username cache so we don't have to user_load constantly $user_cache = array(); + + // Set the page title to the name of the plan + $plan = deploy_get_plan($pid); + drupal_set_title(t('Items in deployment plan %plan', array('%plan' => $plan['name']))); // Build form tree $form['#tree'] = TRUE;