Commit 326faea185b02f4d42b55f30d4b8b922e19adfda
1 parent
d895b4fb
fix for KTS-1383: bad function calls cause hidden errors.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6004 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
5 changed files
with
5 additions
and
5 deletions
templates/kt3/view_folder_history.smarty
| @@ -15,7 +15,7 @@ | @@ -15,7 +15,7 @@ | ||
| 15 | </thead> | 15 | </thead> |
| 16 | <tbody> | 16 | <tbody> |
| 17 | {foreach item=aTransactionRow from=$transactions} | 17 | {foreach item=aTransactionRow from=$transactions} |
| 18 | - <tr class="{cycle options=even,odd}"> | 18 | + <tr class="{cycle values=even,odd}"> |
| 19 | <td class="username">{$aTransactionRow.user_name}</td> | 19 | <td class="username">{$aTransactionRow.user_name}</td> |
| 20 | <td class="action">{$aTransactionRow.transaction_name}</td> | 20 | <td class="action">{$aTransactionRow.transaction_name}</td> |
| 21 | <td class="date">{$aTransactionRow.datetime}</td> | 21 | <td class="date">{$aTransactionRow.datetime}</td> |
templates/ktcore/document/comparison_version_select.smarty
| @@ -13,7 +13,7 @@ | @@ -13,7 +13,7 @@ | ||
| 13 | </thead> | 13 | </thead> |
| 14 | <tbody> | 14 | <tbody> |
| 15 | {foreach item=oVersion from=$versions} | 15 | {foreach item=oVersion from=$versions} |
| 16 | - <tr class="{cycle options=even,odd}"> | 16 | + <tr class="{cycle values=even,odd}"> |
| 17 | <td class="username">{$context->getUserForId($oVersion->getVersionCreatorId())}</td> | 17 | <td class="username">{$context->getUserForId($oVersion->getVersionCreatorId())}</td> |
| 18 | <td class="date">{$oVersion->getMetadataVersion()}</td> | 18 | <td class="date">{$oVersion->getMetadataVersion()}</td> |
| 19 | <td class="compare"> | 19 | <td class="compare"> |
templates/ktcore/document/metadata_history.smarty
| @@ -17,7 +17,7 @@ | @@ -17,7 +17,7 @@ | ||
| 17 | </thead> | 17 | </thead> |
| 18 | <tbody> | 18 | <tbody> |
| 19 | {foreach item=oVersion from=$versions} | 19 | {foreach item=oVersion from=$versions} |
| 20 | - <tr class="{cycle options=even,odd}"> | 20 | + <tr class="{cycle values=even,odd}"> |
| 21 | <td class="username">{$context->getUserForId($oVersion->getVersionCreatorId())}</td> | 21 | <td class="username">{$context->getUserForId($oVersion->getVersionCreatorId())}</td> |
| 22 | <td class="date">{$oVersion->getMetadataVersion()}</td> | 22 | <td class="date">{$oVersion->getMetadataVersion()}</td> |
| 23 | {capture assign=version}{$oVersion->getMajorVersionNumber()}.{$oVersion->getMinorVersionNumber()}{/capture} | 23 | {capture assign=version}{$oVersion->getMajorVersionNumber()}.{$oVersion->getMinorVersionNumber()}{/capture} |
templates/ktcore/document/transaction_history.smarty
| @@ -16,7 +16,7 @@ | @@ -16,7 +16,7 @@ | ||
| 16 | </thead> | 16 | </thead> |
| 17 | <tbody> | 17 | <tbody> |
| 18 | {foreach item=aTransactionRow from=$transactions} | 18 | {foreach item=aTransactionRow from=$transactions} |
| 19 | - <tr class="{cycle options=even,odd}"> | 19 | + <tr class="{cycle values=even,odd}"> |
| 20 | <td class="username">{$aTransactionRow.user_name}</td> | 20 | <td class="username">{$aTransactionRow.user_name}</td> |
| 21 | <td class="action">{i18n}{$aTransactionRow.transaction_name}{/i18n}</td> | 21 | <td class="action">{i18n}{$aTransactionRow.transaction_name}{/i18n}</td> |
| 22 | <td class="date">{$aTransactionRow.datetime}</td> | 22 | <td class="date">{$aTransactionRow.datetime}</td> |
templates/ktcore/workflow/admin/restrictions_edit.smarty
| 1 | -<h2>{i18n}Transition Restrictions{/i18n}</h2> | 1 | +<h2>{i18n arg_name=$context->oTransition->getHumanName()}Transition Restrictions: #name#{/i18n}</h2> |
| 2 | 2 | ||
| 3 | <p class="descriptiveText important">{i18n}All of these must allow the user to perform the transition.{/i18n}</p> | 3 | <p class="descriptiveText important">{i18n}All of these must allow the user to perform the transition.{/i18n}</p> |
| 4 | 4 |