Changeset 354 for trunk/services


Ignore:
Timestamp:
Jun 11, 2009 4:37:41 PM (15 years ago)
Author:
quinn
Message:

Refactored the sum() function in Cart.inc.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/services/logs.php

    r334 r354  
    2525$valid_file_extensions = array('', 'txt', 'log');
    2626
    27 // Files that cannot be deleted (preg search expressions).
     27// Files that shouldn't be deleted (preg search expressions).
    2828$no_delete_files = '/^php_error_log$|^access_log$|^error_log$|^ssl_request_log$/';
    2929
    30 // Files that cannot be cleared (preg search expressions).
     30// Files that shouldn't be cleared (preg search expressions).
    3131$no_clear_files = '/__|^access_log$|^error_log$|^ssl_request_log$/';
    3232
    33 // Files that cannot be archived (preg search expressions).
     33// Files that shouldn't be archived (preg search expressions).
    3434$no_archive_files = '/__|^access_log$|^error_log$|^ssl_request_log$/';
    3535
    36 // Files that cannot be archived (preg search expressions).
     36// Files that shouldn't be downloaded (preg search expressions).
    3737$no_download_files = '/^$/';
    3838
Note: See TracChangeset for help on using the changeset viewer.