I did a clearance of hardcoded strings. Thanks to MaxxCorp's help.
self-explanatory (patch.diff is a patch to the current CVS tree and "new files" is a folder of new files that were created)
Logged In: YES user_id=421258
I have found one mistake:
modules/administrationmodule/_tableTrimSummary.tpl
{$diff} {if $diff = 1}{$_TR.recreated_single}{/if}{if $diff != 1}{$_TR.recreated_multiple}{/if}<br />
change to this:
{$diff} {if $diff == 1}{$_TR.recreated_single}{/if}{if $diff != 1}{$_TR.recreated_multiple}{/if}<br />
Currently it is fixed and the file was replaced.
Log in to post a comment.
self-explanatory (patch.diff is a patch to the current CVS tree and "new files" is a folder of new files that were created)
Logged In: YES
user_id=421258
I have found one mistake:
modules/administrationmodule/_tableTrimSummary.tpl
{$diff} {if $diff = 1}{$_TR.recreated_single}{/if}{if $diff
!= 1}{$_TR.recreated_multiple}{/if}<br />
change to this:
{$diff} {if $diff == 1}{$_TR.recreated_single}{/if}{if $diff
!= 1}{$_TR.recreated_multiple}{/if}<br />
Currently it is fixed and the file was replaced.