From 76db359fb2ab3d6b2a081bb5583a52591906f7a7 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 22 Apr 2008 21:24:34 +0000 Subject: [PATCH] Silence ini_get warnings. fixes #6787 for trunk git-svn-id: https://develop.svn.wordpress.org/trunk@7774 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/script-loader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index fda1259163..a4894fbcc1 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -91,7 +91,7 @@ class WP_Scripts { // these error messages came from the sample swfupload js, they might need changing. $this->localize( 'swfupload-handlers', 'swfuploadL10n', array( 'queue_limit_exceeded' => __('You have attempted to queue too many files.'), - 'file_exceeds_size_limit' => sprintf(__('This file is too big. Your php.ini upload_max_filesize is %s.'), ini_get('upload_max_filesize')), + 'file_exceeds_size_limit' => sprintf(__('This file is too big. Your php.ini upload_max_filesize is %s.'), @ini_get('upload_max_filesize')), 'zero_byte_file' => __('This file is empty. Please try another.'), 'invalid_filetype' => __('This file type is not allowed. Please try another.'), 'default_error' => __('An error occurred in the upload. Please try again later.'),