Ignore:
Timestamp:
06/16/05 17:00:20 (19 years ago)
Author:
bastiaans
Message:

web/addons/toga/templates/search.tpl:

  • Removed size limit on input field

web/addons/toga/index.php:

  • Bugfix on metric menu choice/submit
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/web/addons/toga/index.php

    r143 r144  
    191191                $node_menu .= "<B>Jobarchive</B> ";
    192192                $tpl->assign("view", "search" );
    193                 $tpl->assign("form_name", "archive_search_form" );
     193                $form_name = "archive_search_form";
     194                $tpl->assign("form_name", $form_name );
    194195        } else {
    195                 $tpl->assign("form_name", "toga_form" );
     196                $form_name = "toga_form";
     197                $tpl->assign("form_name", $form_name );
    196198                $tpl->assign("view", "overview" );
    197199        }
     
    203205                if (is_array($context_metrics) ) {
    204206                        $metric_menu = "<B>Metric</B>&nbsp;&nbsp;"
    205                                 ."<SELECT NAME=\"m\" OnChange=\"toga_form.submit();\">\n";
     207                                ."<SELECT NAME=\"m\" OnChange=\"".$form_name.".submit();\">\n";
    206208
    207209                        sort($context_metrics);
Note: See TracChangeset for help on using the changeset viewer.