[Vtigercrm-commits] [vtiger-commits] r10324 - in /vtigercrm/branches/5.0.3/modules/Settings: downloadfile.php language/en_us.lang.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Fri Mar 2 04:20:41 EST 2007


Author: richie
Date: Fri Mar  2 02:20:23 2007
New Revision: 10324

Log:
fixes #3171

Modified:
    vtigercrm/branches/5.0.3/modules/Settings/downloadfile.php
    vtigercrm/branches/5.0.3/modules/Settings/language/en_us.lang.php

Modified: vtigercrm/branches/5.0.3/modules/Settings/downloadfile.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Settings/downloadfile.php (original)
+++ vtigercrm/branches/5.0.3/modules/Settings/downloadfile.php Fri Mar  2 02:20:23 2007
@@ -14,6 +14,7 @@
 
 global $adb;
 global $fileId;
+global $mod_strings;
 
 $fileid = $_REQUEST['fileid'];
 
@@ -41,7 +42,7 @@
 }
 else
 {
-echo "Record doesn't exist.";
+echo $mod_strings['LBL.RECORD_NOEXIST'];
 }
 ?>
 

Modified: vtigercrm/branches/5.0.3/modules/Settings/language/en_us.lang.php
==============================================================================
--- vtigercrm/branches/5.0.3/modules/Settings/language/en_us.lang.php (original)
+++ vtigercrm/branches/5.0.3/modules/Settings/language/en_us.lang.php Fri Mar  2 02:20:23 2007
@@ -896,5 +896,6 @@
 'LBL_TESTMAILSTATUS'=>'Test Mail Status : ',
 'LBL_CHECK_ASSIGNEDTO_MAILID'=>'Please check the assigned-to emailid',
 'LBL_MAILSENDERROR'=>'Mail could not be sent to the admin user. Please check the admin emailid',
+'LBL_RECORD_NOEXIST'=>'Record not present',
 );
 ?>





More information about the vtigercrm-commits mailing list