Changeset 400


Ignore:
Timestamp:
Aug 8, 2012 5:22:09 PM (12 years ago)
Author:
anonymous
Message:

Comment updates.

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/file_importer.php

    r396 r400  
    8686//         }
    8787//     }
    88 //     $app->logMsg('Proccessing complete: ' . $file_count . ' files total.', LOG_INFO, __FILE__, __LINE__);
     88//     $app->logMsg('Processing complete: ' . $file_count . ' files total.', LOG_INFO, __FILE__, __LINE__);
    8989// } else {
    9090//     $app->logMsg('No files available in that directory.', LOG_INFO, __FILE__, __LINE__);
     
    9595//
    9696// /**
    97 //  * Find all files in directories recursivly with a specified file extension.
     97//  * Find all files in directories recursively with a specified file extension.
    9898//  *
    9999//  * @param  string $dir               the full path to the directory to scan
  • trunk/lib/Currency.inc.php

    r396 r400  
    160160                    return false;
    161161                }
    162             } else if ($this->getParam('cache_result') && !filePutContents($cache_file_path, $value, LOCK_EX)) {
     162            } else if ($this->getParam('cache_result') && !filePutContents($cache_file_path, $value)) {
    163163                $app->logMsg(sprintf('Failed writing to target rate file: %s', $cache_file_path), LOG_ERR, __FILE__, __LINE__);
    164164                return false;
  • trunk/lib/Utilities.inc.php

    r396 r400  
    449449/*
    450450* Writes content to the specified file. This function emulates the functionality of file_put_contents from PHP 5.
     451* It makes an exclusive lock on the file while writing.
    451452*
    452453* @access   public
Note: See TracChangeset for help on using the changeset viewer.