diff --git a/boost.admin.inc b/boost.admin.inc index e3c9d527a58c568400be6a7d18c5f568283409d8..b13a34fc6603a87eedce9fe26eb34667cd46cfcf 100644 --- a/boost.admin.inc +++ b/boost.admin.inc @@ -52,10 +52,10 @@ function boost_settings_form($form = array()) { //_boost_check_htaccess(); // TODO $options = array(t('Cache every page except the listed pages.'), t('Cache only the listed pages.')); - $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are '%blog' for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => theme('placeholder', 'blog'), '%blog-wildcard' => theme('placeholder', 'blog/*'), '%front' => theme('placeholder', ''))); + $description = t("Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are %blog for the blog page and %blog-wildcard for every personal blog. %front is the front page.", array('%blog' => 'blog', '%blog-wildcard' => 'blog/*', '%front' => '')); if (user_access('use PHP for block visibility')) { $options[] = t('Cache pages for which the following PHP code returns TRUE (PHP-mode, experts only).'); - $description .= t('If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can severely break your Drupal site.', array('%php' => theme('placeholder', ''))); + $description .= t(' If the PHP-mode is chosen, enter PHP code between %php. Note that executing incorrect PHP-code can severely break your Drupal site.', array('%php' => '')); } $form['cacheability'] = array( '#type' => 'fieldset',