osdir.com
mailing list archive

Subject: Re: Error in Report.tpl - msg#00043

List: web.vtigercrm.devel

Date: Prev Next Index Thread: Prev Next Index
Hi there,   Much obliged Don and if you need me to speak with you, demonstrate it to you, etc, please feel free to call on me   Have a nice weekend,  

Many Thanks,

Patrick Reynolds
Email: patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxx

Why not preview the Greatest Innovation in SSL technology in more than 13 years at http://www.digi-sign.com/aacd

Direct Dial  : +353  1 662-1249
Mobile/Cell  : +353 87 256-0337
Toll Free USA:  +1 800 959-4039

The Certificate Corporation

------------------------0------------------------
The information  in this  email  is  confidential
and may be  legally  privileged.   It is intended
solely for the  addressee.   Access to this email
by anyone else is  unauthorised.  If you  are not
the intended recipient,  any disclosure, copying,
distribution or any action taken or omitted to be
taken in reliance on it, is prohibited and may be
unlawful. Digi-Sign Limited Registered in Ireland
No. 351655. Registered Address: Enterprise Centre
Taylor's Lane, Dublin 8. IRELAND
------------------------0------------------------

 
From: Don [mailto:don-Zls0KXvZ73DQT0dZR+AlfA@xxxxxxxxxxxxxxxx]
Sent: 18 January 2008 16:00
To: patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxx; vtigercrm-developers-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx
Cc: santacroce-KgP/uA7lkjA1GQ1Ptb7lUw@xxxxxxxxxxxxxxxx; Tullio Bezzornia
Subject: Re: [Vtigercrm-developers] Error in Report.tpl

Hi Patrick,

Apologize for the delay in getting back to you. Currently we are a bit held up with vtigerCRM 5.0.4 release. However, we have installed you source and have had a feel of it, but were not able to analyze  in detail.

Right now, the feature integration for 5.0.4 is done and we are working on only the Critical, Major bug fixes reported over 5.0.4 RC. Once the 5.0.4 release is done, we will definitely analyze your patch in detail and will update you with the details for the features that we will move into 5.1 release from your source code

Kindly bear with us in the mean time.

Thanks & Regards,
Don
vtigerCRM





On 1/18/08, Patrick Reynolds <patrick.reynolds@xxxxxxxxxxxxx> wrote: Hi there,

I realise you're all busy with the new release (looks excellent by the way
;-) but I'm wondering if you've any feedback for me on the source code &
features we sent you?

Many Thanks,

Patrick Reynolds
Email: patrick.reynolds@xxxxxxxxxxxxx

Why not preview the Greatest Innovation in SSL technology in more than 13
years at http://www.digi-sign.com/aacd

Direct Dial  : +353  1 662-1249
Mobile/Cell  : +353 87 256-0337
Toll Free USA:  +1 800 959-4039

The Certificate Corporation

------------------------0------------------------
The information  in this  email  is  confidential
and may be  legally  privileged.   It is intended
solely for the  addressee.   Access to this email
by anyone else is  unauthorised.  If you  are not
the intended recipient,  any disclosure, copying,
distribution or any action taken or omitted to be
taken in reliance on it, is prohibited and may be
unlawful. Digi-Sign Limited Registered in Ireland
No. 351655. Registered Address: Enterprise Centre
Taylor's Lane, Dublin 8. IRELAND
------------------------0------------------------
-----Original Message-----
From: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx
[mailto: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx] On Behalf Of carlo
beschi
Sent: 18 January 2008 12:05
To: vtigercrm-developers-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx; santacroce-KgP/uA7lkjA1GQ1Ptb7lUw@xxxxxxxxxxxxxxxx; Tullio
Bezzornia
Subject: Re: [Vtigercrm-developers] Error in Report.tpl

Hi Roberto, all

thanks for the fix :-)

I've updated http://vtiger.studiosynthesis.biz/504-rc2/ (live demo of
vtiger crm  5.0.4 RC2 with italian language pack).

I fixed a second bug of the italian/international version, thanks to
Tullio Bezzornia (all credits to him for submitting the bug and
providing the patch :-)):

while in a module, like Accounts, selecting the module (not the global)
search, and the option advanced search, the "show more" option doesn't
work and generates an error

invalid flag after regular _expression_
[Break on this error]

this is because of the "è" character

Tullio fixed this modifying /include/utils/SearchUtils.php adding at
line 528

$fieldlabel = str_replace ("'","`", $fieldlabel );


and replacing around line 613

        $CRIT_OPT = "<option
value=\'cts\'>".$app_strings['contains']."</option><option
value=\'dcts\'>".$app_strings['does_not_contains']."</option><option
value=\'is\'>".$app_strings['is']."</option><option
value=\'isn\'>".$app_strings['is_not']."</option><option
value=\'bwt\'>".$app_strings['begins_with']."</option><option
value=\'ewt\'>".$app_strings['ends_with']."</option><option
value=\'grt\'>".$app_strings['greater_than']."</option><option
value=\'lst\'>".$app_strings['less_than']."</option><option
value=\'grteq\'>".$app_strings['greater_or_equal']."</option><option
value=\'lsteq\'>".$app_strings['less_or_equal']."</option>";

with

$CRIT_OPT = "<option value=\'cts\'>".str_replace
("'","`",$app_strings['contains'])."</option><option
value=\'dcts\'>".str_replace
("'","`",$app_strings['does_not_contains'])."</option><option
value=\'is\'>".str_replace
("'","`",$app_strings['is'])."</option><option
value=\'isn\'>".str_replace
("'","`",$app_strings['is_not'])."</option><option
value=\'bwt\'>".str_replace
("'","`",$app_strings['begins_with'])."</option><option
value=\'ewt\'>".str_replace
("'","`",$app_strings['ends_with'])."</option><option
value=\'grt\'>".str_replace
("'","`",$app_strings['greater_than'])."</option><option
value=\'lst\'>".str_replace
("'","`",$app_strings['less_than'])."</option><option
value=\'grteq\'>".str_replace
("'","`",$app_strings['greater_or_equal'])."</option><option
value=\'lsteq\'>".str_replace
("'","`",$app_strings['less_or_equal'])."</option>";



Ciao,

Carlo


Santacroce ha scritto:
> Hi there,
>
> during the test of the RC in italian localization I found a bug: in the
> report list page when I click on the '+' button the voices of the menù are
> hidden if the value store in
>
> $app_list_strings = Array (
>
>   'moduleList'
>
> are different from the english name. So the menù had all empty voices.
>
> The code interested from the bug is in the file
\Smarty\templates\Report.tpl
> at line 62
>
>             <a href=""
> class="drop_down">- {$APP.$modules}</a>
>
> To correct this bug replace this string with
>
>             <a href=""
> class="drop_down">- {$modules}</a>
>
> Roberto
>
>
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Reach hundreds of potential candidates - http://jobs.vtiger.com

_______________________________________________
Reach hundreds of potential candidates - http://jobs.vtiger.com


_______________________________________________
Reach hundreds of potential candidates - http://jobs.vtiger.com

_______________________________________________
Reach hundreds of potential candidates - http://jobs.vtiger.com
Was this page helpful?
Yes No
Thread at a glance:

Previous Message by Date: click to view message preview

Re: Error in Report.tpl

Hi Patrick, Apologize for the delay in getting back to you. Currently we are a bit held up with vtigerCRM 5.0.4 release. However, we have installed you source and have had a feel of it, but were not able to analyze  in detail. Right now, the feature integration for 5.0.4 is done and we are working on only the Critical, Major bug fixes reported over 5.0.4 RC. Once the 5.0.4 release is done, we will definitely analyze your patch in detail and will update you with the details for the features that we will move into 5.1 release from your source codeKindly bear with us in the mean time.Thanks & Regards,DonvtigerCRMOn 1/18/08, Patrick Reynolds <patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxx> wrote: Hi there,I realise you're all busy with the new release (looks excellent by the way;-) but I'm wondering if you've any feedback for me on the source code &features we sent you?Many Thanks, Patrick ReynoldsEmail: patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxxWhy not preview the Greatest Innovation in SSL technology in more than 13years at http://www.digi-sign.com/aacdDirect Dial  : +353  1 662-1249Mobile/Cell  : +353 87 256-0337Toll Free USA:  +1 800 959-4039The Certificate Corporation------------------------0------------------------ The information  in this  email  is  confidentialand may be  legally  privileged.   It is intendedsolely for the  addressee.   Access to this emailby anyone else is  unauthorised.  If you  are notthe intended recipient,  any disclosure, copying, distribution or any action taken or omitted to betaken in reliance on it, is prohibited and may beunlawful. Digi-Sign Limited Registered in IrelandNo. 351655. Registered Address: Enterprise CentreTaylor's Lane, Dublin 8. IRELAND ------------------------0-----------------------------Original Message-----From: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx[mailto: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx] On Behalf Of carlobeschiSent: 18 January 2008 12:05To: vtigercrm-developers-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx; santacroce-KgP/uA7lkjA1GQ1Ptb7lUw@xxxxxxxxxxxxxxxx; TullioBezzorniaSubject: Re: [Vtigercrm-developers] Error in Report.tplHi Roberto, all thanks for the fix :-)I've updated http://vtiger.studiosynthesis.biz/504-rc2/ (live demo ofvtiger crm  5.0.4 RC2 with italian language pack). I fixed a second bug of the italian/international version, thanks toTullio Bezzornia (all credits to him for submitting the bug andproviding the patch :-)):while in a module, like Accounts, selecting the module (not the global) search, and the option advanced search, the "show more" option doesn'twork and generates an errorinvalid flag after regular _expression_[Break on this error]this is because of the "è" character Tullio fixed this modifying /include/utils/SearchUtils.php adding atline 528$fieldlabel = str_replace ("'","`", $fieldlabel );and replacing around line 613        $CRIT_OPT = "<option value=\'cts\'>".$app_strings['contains']."</option><optionvalue=\'dcts\'>".$app_strings['does_not_contains']."</option><optionvalue=\'is\'>".$app_strings['is']."</option><option value=\'isn\'>".$app_strings['is_not']."</option><optionvalue=\'bwt\'>".$app_strings['begins_with']."</option><optionvalue=\'ewt\'>".$app_strings['ends_with']."</option><option value=\'grt\'>".$app_strings['greater_than']."</option><optionvalue=\'lst\'>".$app_strings['less_than']."</option><optionvalue=\'grteq\'>".$app_strings['greater_or_equal']."</option><option value=\'lsteq\'>".$app_strings['less_or_equal']."</option>";with$CRIT_OPT = "<option value=\'cts\'>".str_replace("'","`",$app_strings['contains'])."</option><option value=\'dcts\'>".str_replace("'","`",$app_strings['does_not_contains'])."</option><optionvalue=\'is\'>".str_replace("'","`",$app_strings['is'])."</option><option value=\'isn\'>".str_replace("'","`",$app_strings['is_not'])."</option><optionvalue=\'bwt\'>".str_replace("'","`",$app_strings['begins_with'])."</option><option value=\'ewt\'>".str_replace("'","`",$app_strings['ends_with'])."</option><optionvalue=\'grt\'>".str_replace("'","`",$app_strings['greater_than'])."</option><option value=\'lst\'>".str_replace("'","`",$app_strings['less_than'])."</option><optionvalue=\'grteq\'>".str_replace("'","`",$app_strings['greater_or_equal'])."</option><option value=\'lsteq\'>".str_replace("'","`",$app_strings['less_or_equal'])."</option>";Ciao,CarloSantacroce ha scritto: > Hi there,>> during the test of the RC in italian localization I found a bug: in the> report list page when I click on the '+' button the voices of the menù are> hidden if the value store in >> $app_list_strings = Array (>>   'moduleList'>> are different from the english name. So the menù had all empty voices.>> The code interested from the bug is in the file \Smarty\templates\Report.tpl> at line 62>>             <a href="">> class="drop_down">- {$APP.$modules}</a> >> To correct this bug replace this string with>>             <a href="">> class="drop_down">- {$modules}</a> >> Roberto>>>>> ------------------------------------------------------------------------>> _______________________________________________> Reach hundreds of potential candidates - http://jobs.vtiger.com_______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com

Next Message by Date: click to view message preview

Re: Error in Report.tpl

HiRoberto : Thank you for the fix. The fix has been integrated in vtiger CRM. Kindly refer the following change set.http://trac.vtiger.com/cgi-bin/trac.cgi/changeset/11807 Carlo : I've tested in wip demo(http://en.vtiger.com/wip/), http://vtiger.studiosynthesis.biz/504-rc2/ and also in my local setup. I couldn't get any errors. Refer the attached images that I was tried to reproduce the issue. Kindly let me know in detail to reproduce the issue. Thanks & Regards,Minnie.vtiger TeamOn 1/18/08, carlo beschi <carloz-Pc6tN/L88jqGglJvpFV4uA@xxxxxxxxxxxxxxxx> wrote: Hi Roberto, allthanks for the fix :-)I've updated http://vtiger.studiosynthesis.biz/504-rc2/ (live demo ofvtiger crm  5.0.4 RC2 with italian language pack).I fixed a second bug of the italian/international version, thanks toTullio Bezzornia (all credits to him for submitting the bug and providing the patch :-)):while in a module, like Accounts, selecting the module (not the global)search, and the option advanced search, the "show more" option doesn'twork and generates an error invalid flag after regular _expression_[Break on this error]this is because of the "è" characterTullio fixed this modifying /include/utils/SearchUtils.php adding atline 528$fieldlabel = str_replace ("'","`", $fieldlabel ); and replacing around line 613        $CRIT_OPT = "<optionvalue=\'cts\'>".$app_strings['contains']."</option><optionvalue=\'dcts\'>".$app_strings['does_not_contains']."</option><option value=\'is\'>".$app_strings['is']."</option><optionvalue=\'isn\'>".$app_strings['is_not']."</option><optionvalue=\'bwt\'>".$app_strings['begins_with']."</option><option value=\'ewt\'>".$app_strings['ends_with']."</option><optionvalue=\'grt\'>".$app_strings['greater_than']."</option><optionvalue=\'lst\'>".$app_strings['less_than']."</option><option value=\'grteq\'>".$app_strings['greater_or_equal']."</option><optionvalue=\'lsteq\'>".$app_strings['less_or_equal']."</option>"; with$CRIT_OPT = "<option value=\'cts\'>".str_replace("'","`",$app_strings['contains'])."</option><optionvalue=\'dcts\'>".str_replace ("'","`",$app_strings['does_not_contains'])."</option><optionvalue=\'is\'>".str_replace("'","`",$app_strings['is'])."</option><option value=\'isn\'>".str_replace("'","`",$app_strings['is_not'])."</option><optionvalue=\'bwt\'>".str_replace("'","`",$app_strings['begins_with'])."</option><option value=\'ewt\'>".str_replace("'","`",$app_strings['ends_with'])."</option><optionvalue=\'grt\'>".str_replace("'","`",$app_strings['greater_than'])."</option><option value=\'lst\'>".str_replace("'","`",$app_strings['less_than'])."</option><optionvalue=\'grteq\'>".str_replace("'","`",$app_strings['greater_or_equal'])."</option><option value=\'lsteq\'>".str_replace("'","`",$app_strings['less_or_equal'])."</option>";Ciao,CarloSantacroce ha scritto: > Hi there,>> during the test of the RC in italian localization I found a bug: in the> report list page when I click on the '+' button the voices of the menù are> hidden if the value store in >> $app_list_strings = Array (>>   'moduleList'>> are different from the english name. So the menù had all empty voices.>> The code interested from the bug is in the file \Smarty\templates\Report.tpl > at line 62>>             <a href="">> class="drop_down">- {$APP.$modules}</a>>> To correct this bug replace this string with >>             <a href="">> class="drop_down">- {$modules}</a>>> Roberto>>>> > ------------------------------------------------------------------------>> _______________________________________________> Reach hundreds of potential candidates - http://jobs.vtiger.com_______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com wip.png Description: PNG image italian.png Description: PNG image _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com

Previous Message by Thread: click to view message preview

Re: Error in Report.tpl

Hi Patrick, Apologize for the delay in getting back to you. Currently we are a bit held up with vtigerCRM 5.0.4 release. However, we have installed you source and have had a feel of it, but were not able to analyze  in detail. Right now, the feature integration for 5.0.4 is done and we are working on only the Critical, Major bug fixes reported over 5.0.4 RC. Once the 5.0.4 release is done, we will definitely analyze your patch in detail and will update you with the details for the features that we will move into 5.1 release from your source codeKindly bear with us in the mean time.Thanks & Regards,DonvtigerCRMOn 1/18/08, Patrick Reynolds <patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxx> wrote: Hi there,I realise you're all busy with the new release (looks excellent by the way;-) but I'm wondering if you've any feedback for me on the source code &features we sent you?Many Thanks, Patrick ReynoldsEmail: patrick.reynolds-kWBLLYNFhMWaMJb+Lgu22Q@xxxxxxxxxxxxxxxxWhy not preview the Greatest Innovation in SSL technology in more than 13years at http://www.digi-sign.com/aacdDirect Dial  : +353  1 662-1249Mobile/Cell  : +353 87 256-0337Toll Free USA:  +1 800 959-4039The Certificate Corporation------------------------0------------------------ The information  in this  email  is  confidentialand may be  legally  privileged.   It is intendedsolely for the  addressee.   Access to this emailby anyone else is  unauthorised.  If you  are notthe intended recipient,  any disclosure, copying, distribution or any action taken or omitted to betaken in reliance on it, is prohibited and may beunlawful. Digi-Sign Limited Registered in IrelandNo. 351655. Registered Address: Enterprise CentreTaylor's Lane, Dublin 8. IRELAND ------------------------0-----------------------------Original Message-----From: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx[mailto: vtigercrm-developers-bounces-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx] On Behalf Of carlobeschiSent: 18 January 2008 12:05To: vtigercrm-developers-bEj6vJcGsH8cQDxxcAYjIUEOCMrvLtNR@xxxxxxxxxxxxxxxx; santacroce-KgP/uA7lkjA1GQ1Ptb7lUw@xxxxxxxxxxxxxxxx; TullioBezzorniaSubject: Re: [Vtigercrm-developers] Error in Report.tplHi Roberto, all thanks for the fix :-)I've updated http://vtiger.studiosynthesis.biz/504-rc2/ (live demo ofvtiger crm  5.0.4 RC2 with italian language pack). I fixed a second bug of the italian/international version, thanks toTullio Bezzornia (all credits to him for submitting the bug andproviding the patch :-)):while in a module, like Accounts, selecting the module (not the global) search, and the option advanced search, the "show more" option doesn'twork and generates an errorinvalid flag after regular _expression_[Break on this error]this is because of the "è" character Tullio fixed this modifying /include/utils/SearchUtils.php adding atline 528$fieldlabel = str_replace ("'","`", $fieldlabel );and replacing around line 613        $CRIT_OPT = "<option value=\'cts\'>".$app_strings['contains']."</option><optionvalue=\'dcts\'>".$app_strings['does_not_contains']."</option><optionvalue=\'is\'>".$app_strings['is']."</option><option value=\'isn\'>".$app_strings['is_not']."</option><optionvalue=\'bwt\'>".$app_strings['begins_with']."</option><optionvalue=\'ewt\'>".$app_strings['ends_with']."</option><option value=\'grt\'>".$app_strings['greater_than']."</option><optionvalue=\'lst\'>".$app_strings['less_than']."</option><optionvalue=\'grteq\'>".$app_strings['greater_or_equal']."</option><option value=\'lsteq\'>".$app_strings['less_or_equal']."</option>";with$CRIT_OPT = "<option value=\'cts\'>".str_replace("'","`",$app_strings['contains'])."</option><option value=\'dcts\'>".str_replace("'","`",$app_strings['does_not_contains'])."</option><optionvalue=\'is\'>".str_replace("'","`",$app_strings['is'])."</option><option value=\'isn\'>".str_replace("'","`",$app_strings['is_not'])."</option><optionvalue=\'bwt\'>".str_replace("'","`",$app_strings['begins_with'])."</option><option value=\'ewt\'>".str_replace("'","`",$app_strings['ends_with'])."</option><optionvalue=\'grt\'>".str_replace("'","`",$app_strings['greater_than'])."</option><option value=\'lst\'>".str_replace("'","`",$app_strings['less_than'])."</option><optionvalue=\'grteq\'>".str_replace("'","`",$app_strings['greater_or_equal'])."</option><option value=\'lsteq\'>".str_replace("'","`",$app_strings['less_or_equal'])."</option>";Ciao,CarloSantacroce ha scritto: > Hi there,>> during the test of the RC in italian localization I found a bug: in the> report list page when I click on the '+' button the voices of the menù are> hidden if the value store in >> $app_list_strings = Array (>>   'moduleList'>> are different from the english name. So the menù had all empty voices.>> The code interested from the bug is in the file \Smarty\templates\Report.tpl> at line 62>>             <a href="">> class="drop_down">- {$APP.$modules}</a> >> To correct this bug replace this string with>>             <a href="">> class="drop_down">- {$modules}</a> >> Roberto>>>>> ------------------------------------------------------------------------>> _______________________________________________> Reach hundreds of potential candidates - http://jobs.vtiger.com_______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com

Next Message by Thread: click to view message preview

Re: Error in Report.tpl

HiRoberto : Thank you for the fix. The fix has been integrated in vtiger CRM. Kindly refer the following change set.http://trac.vtiger.com/cgi-bin/trac.cgi/changeset/11807 Carlo : I've tested in wip demo(http://en.vtiger.com/wip/), http://vtiger.studiosynthesis.biz/504-rc2/ and also in my local setup. I couldn't get any errors. Refer the attached images that I was tried to reproduce the issue. Kindly let me know in detail to reproduce the issue. Thanks & Regards,Minnie.vtiger TeamOn 1/18/08, carlo beschi <carloz-Pc6tN/L88jqGglJvpFV4uA@xxxxxxxxxxxxxxxx> wrote: Hi Roberto, allthanks for the fix :-)I've updated http://vtiger.studiosynthesis.biz/504-rc2/ (live demo ofvtiger crm  5.0.4 RC2 with italian language pack).I fixed a second bug of the italian/international version, thanks toTullio Bezzornia (all credits to him for submitting the bug and providing the patch :-)):while in a module, like Accounts, selecting the module (not the global)search, and the option advanced search, the "show more" option doesn'twork and generates an error invalid flag after regular _expression_[Break on this error]this is because of the "è" characterTullio fixed this modifying /include/utils/SearchUtils.php adding atline 528$fieldlabel = str_replace ("'","`", $fieldlabel ); and replacing around line 613        $CRIT_OPT = "<optionvalue=\'cts\'>".$app_strings['contains']."</option><optionvalue=\'dcts\'>".$app_strings['does_not_contains']."</option><option value=\'is\'>".$app_strings['is']."</option><optionvalue=\'isn\'>".$app_strings['is_not']."</option><optionvalue=\'bwt\'>".$app_strings['begins_with']."</option><option value=\'ewt\'>".$app_strings['ends_with']."</option><optionvalue=\'grt\'>".$app_strings['greater_than']."</option><optionvalue=\'lst\'>".$app_strings['less_than']."</option><option value=\'grteq\'>".$app_strings['greater_or_equal']."</option><optionvalue=\'lsteq\'>".$app_strings['less_or_equal']."</option>"; with$CRIT_OPT = "<option value=\'cts\'>".str_replace("'","`",$app_strings['contains'])."</option><optionvalue=\'dcts\'>".str_replace ("'","`",$app_strings['does_not_contains'])."</option><optionvalue=\'is\'>".str_replace("'","`",$app_strings['is'])."</option><option value=\'isn\'>".str_replace("'","`",$app_strings['is_not'])."</option><optionvalue=\'bwt\'>".str_replace("'","`",$app_strings['begins_with'])."</option><option value=\'ewt\'>".str_replace("'","`",$app_strings['ends_with'])."</option><optionvalue=\'grt\'>".str_replace("'","`",$app_strings['greater_than'])."</option><option value=\'lst\'>".str_replace("'","`",$app_strings['less_than'])."</option><optionvalue=\'grteq\'>".str_replace("'","`",$app_strings['greater_or_equal'])."</option><option value=\'lsteq\'>".str_replace("'","`",$app_strings['less_or_equal'])."</option>";Ciao,CarloSantacroce ha scritto: > Hi there,>> during the test of the RC in italian localization I found a bug: in the> report list page when I click on the '+' button the voices of the menù are> hidden if the value store in >> $app_list_strings = Array (>>   'moduleList'>> are different from the english name. So the menù had all empty voices.>> The code interested from the bug is in the file \Smarty\templates\Report.tpl > at line 62>>             <a href="">> class="drop_down">- {$APP.$modules}</a>>> To correct this bug replace this string with >>             <a href="">> class="drop_down">- {$modules}</a>>> Roberto>>>> > ------------------------------------------------------------------------>> _______________________________________________> Reach hundreds of potential candidates - http://jobs.vtiger.com_______________________________________________Reach hundreds of potential candidates - http://jobs.vtiger.com wip.png Description: PNG image italian.png Description: PNG image _______________________________________________ Reach hundreds of potential candidates - http://jobs.vtiger.com
Loading Comments...
Home | News | Patents | Sitemap | FAQ | advertise

Advertising by