Skip to content

Commit

Permalink
fixed wrong sidebar array var
Browse files Browse the repository at this point in the history
  • Loading branch information
ophian committed Nov 25, 2012
1 parent a94b4a6 commit 0f51f5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/admin/tplold/show_plugins.fnc.tpl
Expand Up @@ -10,9 +10,9 @@ When the { is followed by a space it's not interpreted as smarty delimiter but l
<script type="text/javascript">
function templatePluginMoverInit() {
{foreach $sidebars AS $sidebar}
{foreach $plugin_placements AS $sidebar}
{($is_first) ? 'var ' : ''} list = document.getElementById("{$sidebar}_col");
{($is_first) ? 'var' : ''} list = document.getElementById("{$sidebar}_col");
DragDrop.makeListContainer(list, 'g1');
list.onDragOver = function() { this.style["border"] = "1px solid #4d759b"; };
list.onDragOut = function() { this.style["border"] = "none"; };
Expand Down

0 comments on commit 0f51f5e

Please sign in to comment.