/[drupal]/contributions/modules/boost/boost.admin.inc
ViewVC logotype

Diff of /contributions/modules/boost/boost.admin.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1.2.1.2.3.2.111, Wed Nov 11 08:14:03 2009 UTC revision 1.1.2.1.2.3.2.112, Fri Nov 13 20:02:45 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: boost.admin.inc,v 1.1.2.1.2.3.2.110 2009/11/10 21:50:32 mikeytown2 Exp $  // $Id: boost.admin.inc,v 1.1.2.1.2.3.2.111 2009/11/11 08:14:03 mikeytown2 Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 1140  function boost_count_all_files($path, &$ Line 1140  function boost_count_all_files($path, &$
1140    // Get File Count    // Get File Count
1141    $paths = glob($path . '*', GLOB_MARK|GLOB_ONLYDIR|GLOB_NOSORT);    $paths = glob($path . '*', GLOB_MARK|GLOB_ONLYDIR|GLOB_NOSORT);
1142    $files = count(glob($path . '*.*', GLOB_NOSORT));    $files = count(glob($path . '*.*', GLOB_NOSORT));
1143    foreach ($paths as $path) {    if ($paths) {
1144      $files += boost_count_all_files($path, $timer, FALSE);      foreach ($paths as $path) {
1145          $files += boost_count_all_files($path, $timer, FALSE);
1146        }
1147    }    }
1148    
1149    // If we ran out of time round and add a ++ to the file count    // If we ran out of time round and add a ++ to the file count

Legend:
Removed from v.1.1.2.1.2.3.2.111  
changed lines
  Added in v.1.1.2.1.2.3.2.112

  ViewVC Help
Powered by ViewVC 1.1.2