diff options
Diffstat (limited to 'modules/system/system.tokens.inc')
-rw-r--r-- | modules/system/system.tokens.inc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/modules/system/system.tokens.inc b/modules/system/system.tokens.inc index 39c326f0e..e13a4a2ab 100644 --- a/modules/system/system.tokens.inc +++ b/modules/system/system.tokens.inc @@ -36,10 +36,6 @@ function system_token_info() { 'name' => t("Slogan"), 'description' => t("The slogan of the site."), ); - $site['mission'] = array( - 'name' => t("Mission"), - 'description' => t("The optional 'mission' of the site."), - ); $site['mail'] = array( 'name' => t("Email"), 'description' => t("The administrative email address for the site."), @@ -160,11 +156,6 @@ function system_tokens($type, $tokens, array $data = array(), array $options = a $replacements[$original] = $sanitize ? check_plain($slogan) : $slogan; break; - case 'mission': - $mission = variable_get('site_mission', ''); - $replacements[$original] = $sanitize ? filter_xss($mission) : $mission; - break; - case 'mail': $replacements[$original] = variable_get('site_mail', ''); break; |