IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 40381


Ignore:
Timestamp:
Apr 6, 2018, 3:23:32 PM (8 years ago)
Author:
watersc1
Message:

ereg was deprecated in php 5, and is removed in php 7. I have replaced the one call with a preg_match call, which appears to be the replacement.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/czw_branch/20170908/ippMonitor/raw/ipp.php

    r40093 r40381  
    351351  // loop over the lines in the file and generate lines in the menu
    352352  while ($line = fgetcsv ($file, 1024, "|")) {
    353     if (ereg ('^[:blank:]*#', $line[0])) continue;
     353    if (preg_match ('^[:blank:]*#', $line[0])) continue;
    354354    if (count($line) < 2) continue;
    355355
Note: See TracChangeset for help on using the changeset viewer.