Changeset 12251

Show
Ignore:
Timestamp:
12/16/08 03:36:23 (2 years ago)
Author:
asha
Message:

Fixed the issue with language string for 'Auto Gen On Save' during Save. - Asha

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vtigercrm/branches/5.1/data/CRMEntity.php

    r12250 r12251  
    551551                          elseif($uitype == 4 && ($insertion_mode != 'edit'|| ($insertion_mode == 'edit' && $module == 'Documents'))) { 
    552552                                // This check is added to avoid mod num generation multiple times for imported records 
    553                                 if(!isset($this->column_fields[$fieldname]) || $this->column_fields[$fieldname] == '' || $this->column_fields[$fieldname] == 'AUTO GEN ON SAVE'
     553                                if(!isset($this->column_fields[$fieldname]) || $this->column_fields[$fieldname] == '' || $this->column_fields[$fieldname] == getTranslatedString('MSG_AUTO_GEN_ON_SAVE')
    554554                                        $this->column_fields[$fieldname] = $this->setModuleSeqNumber("increment",$module); 
    555555                                $fldvalue = $this->column_fields[$fieldname];