From 571013af8cac7f8c47bb8028495be2e0393d5150 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Thu, 10 May 2007 10:00:50 +0000 Subject: - Patch #142619 by erdemkose: fixed E_ALL warnings. --- modules/path/path.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/path/path.module') diff --git a/modules/path/path.module b/modules/path/path.module index 942e32d37..0312c941e 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -96,7 +96,7 @@ function path_admin_delete_confirm($pid) { $form['pid'] = array('#type' => 'value', '#value' => $pid); $output = confirm_form($form, t('Are you sure you want to delete path alias %title?', array('%title' => $path['dst'])), - $_GET['destination'] ? $_GET['destination'] : 'admin/build/path', t('This action cannot be undone.'), + isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path', t('This action cannot be undone.'), t('Delete'), t('Cancel') ); } return $output; -- cgit v1.2.3