Changeset 8333 for trunk/MagicSoft/Mars/datacenter/db/menu.php
- Timestamp:
- 02/26/07 12:59:57 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/datacenter/db/menu.php
r8252 r8333 483 483 } 484 484 485 function PrintNightRangeMenu($host,$user,$pw,$db )485 function PrintNightRangeMenu($host,$user,$pw,$db, $table) 486 486 { 487 487 if (empty($_GET["fStartDate"])) 488 $timemin = GetMin("fRunStart", "Sequences", $host, $user, $pw, $db);488 $timemin = GetMin("fRunStart", $table, $host, $user, $pw, $db); 489 489 else 490 490 $timemin = $_GET["fStartDate"]; 491 491 492 492 if (empty($_GET["fStopDate"])) 493 $timemax = GetMax ("fRunStart", "Sequences", $host, $user, $pw, $db);493 $timemax = GetMaxDate("fRunStart", $table, $host, $user, $pw, $db); 494 494 else 495 495 $timemax = $_GET["fStopDate"]; 496 496 497 497 printf("Night (yyyy-mm-dd) from <input name=\"fStartDate\" type=\"text\" size=\"10\" maxlength=\"10\" value=\"%s\">\n", $timemin);
Note:
See TracChangeset
for help on using the changeset viewer.