/[health_html]/inc/search.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /inc/search.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by ravilov, Mon Sep 3 15:52:16 2001 UTC revision 1.6 by ravilov, Tue Sep 25 15:38:04 2001 UTC
# Line 1  Line 1 
1  <?php  <?php
2          $basic_logic = "AND";          $basic_logic = "AND";
         function MySort($a, $b) {  
                 return MyCompare($a["caption"], $b["caption"]);  
         }  
3          function Search($fields, $q1_fields, $q2_fields, $def_field = "") {          function Search($fields, $q1_fields, $q2_fields, $def_field = "") {
4                  global $go;                  global $go;
5                  $tp = new Smarty();                  $tp = new Smarty();
# Line 124  Line 121 
121                                  "caption" => MyEscape($v["caption"])                                  "caption" => MyEscape($v["caption"])
122                          ));                          ));
123                  }                  }
                 usort($flds, "MySort");  
124                  $tp->assign("fields", $flds);                  $tp->assign("fields", $flds);
125                  global $PHP_SELF, $section, $section_menu;                  global $PHP_SELF, $section, $section_menu;
126                  $tp->assign("section", $section);                  $tp->assign("section", $section);
127                  $tp->assign("section_menu", $section_menu);                  $tp->assign("section_menu", $section_menu);
128                  $tp->assign("FORM_ACTION", $PHP_SELF.HTMLSpecialChars("?section=$section&section_menu={$section_menu}&stype=$stype"));                  $tp->assign("FORM_ACTION", $PHP_SELF.HTMLSpecialChars("?section=$section&section_menu={$section_menu}&stype=$stype"));
129                  $form = $tp->fetch("search.tpl");                  $form = $tp->fetch("search.tpl");
130                  global $onload;                  if ($form) {
131                  $onload .= "document.forms[0].elements[".($stype?2:1)."].focus();";                          global $onload;
132                            $onload .= "document.forms[1].elements[".($stype?2:1)."].focus();";
133                    }
134                  return array($form, $qry_1, $qry_2);                  return array($form, $qry_1, $qry_2);
135          }          }
136  ?>  ?>

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

  ViewVC Help
Powered by ViewVC 1.1.26