summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-08 13:23:41 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-11-08 13:23:41 +0000
commit45e0f774bdff5c74bc1b04c7d3834f85d5f5b6a4 (patch)
tree61ec613f7e41fbf25035e367c1186ead2b6b0b71 /modules/system/system.admin.inc
parent031a6876495a74326cd69b660333ab35450cf705 (diff)
downloadbrdo-45e0f774bdff5c74bc1b04c7d3834f85d5f5b6a4.tar.gz
brdo-45e0f774bdff5c74bc1b04c7d3834f85d5f5b6a4.tar.bz2
#602522 follow-up by effulgentsia: Fix a couple of straggler missed operation link conversions.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index 877598119..4c85c47d3 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -1762,7 +1762,9 @@ function system_date_time_settings() {
// the system.
if ($type_info['locked'] == 0) {
$form['formats']['delete']['date_format_' . $type . '_delete'] = array(
- '#markup' => l(t('delete'), 'admin/config/regional/date-time/types/' . $type . '/delete'),
+ '#type' => 'link',
+ '#title' => t('delete'),
+ '#href' => 'admin/config/regional/date-time/types/' . $type . '/delete',
);
}
}