issue 2449, changed a message

git-svn-id: http://xe-core.googlecode.com/svn/branches/luminous@11470 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
flyskyko 2012-09-24 08:36:28 +00:00
parent a2658393fe
commit 9ac0e5bc99

View file

@ -332,7 +332,7 @@
$point = $module_config['download_file'];
if(!isset($point)) $point = $config->download_file;
// If points are less than 0, and if downloading a file is not allowed in this case, give an errors
if($cur_point + $point < 0 && $config->disable_download == 'Y') return new Object(-1,'msg_not_permitted_download');
if($cur_point + $point < 0 && $config->disable_download == 'Y') return new Object(-1,'msg_cannot_download');
return new Object();
}