diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-07-05 08:48:58 +0000 |
commit | 806d0a3dee25333558bb0a888c2a51c33f0723cd (patch) | |
tree | 4171b59abeb1607948721d86f5c76405c666491b /modules/path/path.module | |
parent | b9c40a52370c2e7d8b3db078f869e02881435da9 (diff) | |
download | brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.gz brdo-806d0a3dee25333558bb0a888c2a51c33f0723cd.tar.bz2 |
#156910 by asimmonds: fix code indentation problems introduced with new code in this development cycle; only whitespace changes
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/path/path.module b/modules/path/path.module index cd0643402..4b7c20916 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -94,8 +94,8 @@ function path_admin_delete_confirm($pid) { if (user_access('administer url aliases')) { $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'])), - isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path'); + t('Are you sure you want to delete path alias %title?', array('%title' => $path['dst'])), + isset($_GET['destination']) ? $_GET['destination'] : 'admin/build/path'); } return $output; } |