Ignore:
Timestamp:
Jun 29, 2012, 6:25:02 AM (12 years ago)
Author:
rvelices
Message:

bug 2668 - fix php warnings on glob function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/functions.php

    r13651 r16167  
    23612361  }
    23622362  $path = substr_replace($path, $pattern, $dot, 0);
    2363   foreach( glob(PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR.$path) as $file)
    2364   {
    2365     @unlink($file);
     2363  if ( ($glob=glob(PHPWG_ROOT_PATH.PWG_DERIVATIVE_DIR.$path)) !== false)
     2364  {
     2365    foreach( $glob as $file)
     2366    {
     2367      @unlink($file);
     2368    }
    23662369  }
    23672370}
Note: See TracChangeset for help on using the changeset viewer.