summaryrefslogtreecommitdiff
path: root/modules/system/system.admin.inc
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r--modules/system/system.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc
index e3926043e..f80d2a8fc 100644
--- a/modules/system/system.admin.inc
+++ b/modules/system/system.admin.inc
@@ -52,7 +52,7 @@ function system_main_admin_page($arg = NULL) {
$block['show'] = TRUE;
if (empty($content)) {
// If no items found below, but access checks did not fail, show.
- $block['title'] = l($item['title'], $item['href'], $item['localized_options']);
+ $block['title'] = l($item['title'], $item['href'], $item['localized_options']);
}
else {
// Theme items below.
@@ -1552,7 +1552,7 @@ function system_image_toolkit_settings() {
// Get the toolkit's settings form.
$function = 'image_' . $current_toolkit . '_settings';
- if (function_exists($function)) {
+ if (drupal_function_exists($function)) {
$form['image_toolkit_settings'] = $function();
}