IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 31, 2016, 6:26:07 AM (10 years ago)
Author:
eugene
Message:

fix MDB2 DBI methods; avoid php warnings by putting quotes around hash arguments; check for hash element existence before using; simplify code with get_htmlkey_value function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippMonitor/def/autocodeImage.php

    r31102 r39498  
    4646  menu_end();
    4747}
    48 if (!$qry->fetchInto($row)) {
     48if (!dbFetchInto($qry, $row)) {
    4949  echo "<b>error reading $TABLE table count</b><br>\n";
    5050  echo "<br><small><b> count query : $sql </b></small><br>\n";
     
    111111
    112112// output the results to tmpfile
    113 while ($qry->fetchInto($row)) {
     113while (dbFetchInto($qry, $row)) {
    114114  $line = "";
    115115  foreach ($row as $i => $value) {
Note: See TracChangeset for help on using the changeset viewer.