aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorpatdenice <patdenice@piwigo.org>2008-03-07 10:42:51 +0000
committerpatdenice <patdenice@piwigo.org>2008-03-07 10:42:51 +0000
commit6ecb1f350753ac6c258677bb244d6003b3d359d3 (patch)
treeba67d68f5db289335b3c0e2cbfd7d27738f48673 /template
parent0c83b734fb264c24e3bbe5758d0cf417cdc1859c (diff)
Use class for plugins management
git-svn-id: http://piwigo.org/svn/trunk@2263 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r--template/yoga/admin/plugins_list.tpl2
-rw-r--r--template/yoga/admin/plugins_new.tpl2
-rw-r--r--template/yoga/admin/plugins_update.tpl2
3 files changed, 3 insertions, 3 deletions
diff --git a/template/yoga/admin/plugins_list.tpl b/template/yoga/admin/plugins_list.tpl
index 89b57d448..767a0924e 100644
--- a/template/yoga/admin/plugins_list.tpl
+++ b/template/yoga/admin/plugins_list.tpl
@@ -5,7 +5,7 @@
{'Sort order'|@translate} :
<select onchange="document.location = this.options[this.selectedIndex].value;" style="width:100px">
- {html_options options=$order selected=$selected}
+ {html_options options=$order_options selected=$order_selected}
</select>
{if isset($plugins)}
diff --git a/template/yoga/admin/plugins_new.tpl b/template/yoga/admin/plugins_new.tpl
index bf0081703..90167e2e9 100644
--- a/template/yoga/admin/plugins_new.tpl
+++ b/template/yoga/admin/plugins_new.tpl
@@ -5,7 +5,7 @@
{'Sort order'|@translate} :
<select onchange="document.location = this.options[this.selectedIndex].value;" style="width:120px">
- {html_options options=$order selected=$selected}
+ {html_options options=$order_options selected=$order_selected}
</select>
{if isset($plugins)}
diff --git a/template/yoga/admin/plugins_update.tpl b/template/yoga/admin/plugins_update.tpl
index ca1ca541e..9abc32be1 100644
--- a/template/yoga/admin/plugins_update.tpl
+++ b/template/yoga/admin/plugins_update.tpl
@@ -44,7 +44,7 @@
<tr class="{if $smarty.foreach.plugins_loop.index is odd}row1{else}row2{/if}">
<td><a href="{$plugin.URL}" onclick="window.open(this.href); return false;" class="tooltip">{$plugin.NAME}
<span>{$plugin.EXT_DESC}</span></a></td>
- <td style="text-align:center;"><span class="tooltip">{$plugin.VERSION}<span>{$plugin.VER_DESC}</span></span></td>
+ <td style="text-align:center;">{$plugin.VERSION}</td>
</tr>
{/foreach}
</table>