Commit 306419549c654bedd97bc9bea9ca98d0b2ca2b15
1 parent
de22581e
Passing sources through as sources, not aSources.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4179 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
3 additions
and
3 deletions
templates/ktcore/authentication/manage.smarty
| @@ -16,12 +16,12 @@ | @@ -16,12 +16,12 @@ | ||
| 16 | </form> | 16 | </form> |
| 17 | {/if} | 17 | {/if} |
| 18 | 18 | ||
| 19 | -{if $aSources} | 19 | +{if $sources} |
| 20 | <h3>Existing sources</h3> | 20 | <h3>Existing sources</h3> |
| 21 | 21 | ||
| 22 | <ul> | 22 | <ul> |
| 23 | -{foreach from=$aSources item=oSource} | ||
| 24 | - <li> | 23 | +{foreach from=$sources item=oSource} |
| 24 | + <li><a href="?action=viewsource&source_id={$oSource->getId()}">{$oSource->getName()}</a></li> | ||
| 25 | {/foreach} | 25 | {/foreach} |
| 26 | </ul> | 26 | </ul> |
| 27 | {/if} | 27 | {/if} |