From 0b061115b0e32d9b4f6cf134dcc332f4d49858ed Mon Sep 17 00:00:00 2001 From: Ben Word Date: Mon, 11 Jun 2012 11:34:49 -0600 Subject: [PATCH] Fix #469 - Remove unnecessary semicolon --- inc/htaccess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/htaccess.php b/inc/htaccess.php index 421aaec..c69ce0c 100644 --- a/inc/htaccess.php +++ b/inc/htaccess.php @@ -11,7 +11,7 @@ if (stristr($_SERVER['SERVER_SOFTWARE'], 'apache') || stristr($_SERVER['SERVER_S if (current_user_can('administrator')) { add_action('admin_notices', create_function('', "echo '

" . sprintf(__('Please make sure your .htaccess file is writable ', 'roots'), admin_url('options-permalink.php')) . "

';")); } - }; + } } add_action('admin_init', 'roots_htaccess_writable');