Ignore:
Timestamp:
02/26/07 12:59:57 (18 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/datacenter/db/menu.php

    r8252 r8333  
    483483}
    484484
    485 function PrintNightRangeMenu($host,$user,$pw,$db)
     485function PrintNightRangeMenu($host,$user,$pw,$db, $table)
    486486{
    487487    if (empty($_GET["fStartDate"]))
    488         $timemin = GetMin("fRunStart", "Sequences", $host, $user, $pw, $db);
     488        $timemin = GetMin("fRunStart", $table, $host, $user, $pw, $db);
    489489    else
    490490        $timemin = $_GET["fStartDate"];
    491491
    492492    if (empty($_GET["fStopDate"]))
    493         $timemax = GetMax("fRunStart", "Sequences", $host, $user, $pw, $db);
     493        $timemax = GetMaxDate("fRunStart", $table, $host, $user, $pw, $db);
    494494    else
    495             $timemax = $_GET["fStopDate"];
     495        $timemax = $_GET["fStopDate"];
    496496
    497497    printf("Night&nbsp;(yyyy-mm-dd)&nbsp;from&nbsp;<input name=\"fStartDate\" type=\"text\" size=\"10\" maxlength=\"10\" value=\"%s\">\n", $timemin);
Note: See TracChangeset for help on using the changeset viewer.