summaryrefslogtreecommitdiffstats
path: root/wp-admin
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-24 08:11:47 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-24 08:11:47 +0000
commitda1f2896cfe0e719c14375f95a4acb223eaf180f (patch)
treec14ff2539db1a33229128a46b21a929f291b5b78 /wp-admin
parentf99a729073e1e89827c4a5cb31e511d258cc6b98 (diff)
downloadwordpress-mu-da1f2896cfe0e719c14375f95a4acb223eaf180f.tar.gz
wordpress-mu-da1f2896cfe0e719c14375f95a4acb223eaf180f.tar.xz
wordpress-mu-da1f2896cfe0e719c14375f95a4acb223eaf180f.zip
gettext the disable upload message
Remove mention of paid-upgrades.php, props momo360modena, fixes #470 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1127 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-admin')
-rw-r--r--wp-admin/includes/mu.php2
-rw-r--r--wp-admin/includes/upload.php10
2 files changed, 6 insertions, 6 deletions
diff --git a/wp-admin/includes/mu.php b/wp-admin/includes/mu.php
index d1a2f59..cbf5c9d 100644
--- a/wp-admin/includes/mu.php
+++ b/wp-admin/includes/mu.php
@@ -332,7 +332,7 @@ function wpmu_checkAvailableSpace() {
if( ($spaceAllowed - $size) <= 0 ) {
define( 'DISABLE_UPLOADS', true );
- define( 'DISABLE_UPLOADS_MESSAGE', 'Sorry, you must delete files before you can upload any more, or <a target="_new" href="paid-upgrades.php">buy more space</a>' );
+ define( 'DISABLE_UPLOADS_MESSAGE', __('Sorry, you must delete files before you can upload any more.') );
}
}
add_action('upload_files_upload','wpmu_checkAvailableSpace');
diff --git a/wp-admin/includes/upload.php b/wp-admin/includes/upload.php
index c66feeb..3064b08 100644
--- a/wp-admin/includes/upload.php
+++ b/wp-admin/includes/upload.php
@@ -207,11 +207,11 @@ function wp_upload_tab_upload_action() {
switch ( $action ) :
case 'upload' :
if ( defined('DISABLE_UPLOADS') && constant('DISABLE_UPLOADS') ) {
- if ( defined('DISABLE_UPLOADS_MESSAGE') && constant('DISABLE_UPLOADS_MESSAGE') ) {
- return die(__(DISABLE_UPLOADS_MESSAGE));
- } else {
- return die(__('Sorry, uploads are temporarily disabled.'));
- }
+ if ( defined('DISABLE_UPLOADS_MESSAGE') && constant('DISABLE_UPLOADS_MESSAGE') ) {
+ wp_die(__(DISABLE_UPLOADS_MESSAGE));
+ } else {
+ wp_die(__('Sorry, uploads are temporarily disabled.'));
+ }
}
global $from_tab, $post_id, $style;
if ( !$from_tab )