diff options
author | Chad Parry <github@chad.parry.org> | 2011-05-04 17:48:25 -0600 |
---|---|---|
committer | Chad Parry <github@chad.parry.org> | 2011-05-04 17:48:25 -0600 |
commit | d2331bf43457a8d33491921f106879f087438171 (patch) | |
tree | 0e733a0213b54ca1c5cb8ee020c78855db39cc88 /modules/gallery/helpers/system.php | |
parent | 0e844766baf3b3875cbb2d84579626e05e879420 (diff) |
Simplified the temp_filename implementation and removed the mocks.
Diffstat (limited to 'modules/gallery/helpers/system.php')
-rw-r--r-- | modules/gallery/helpers/system.php | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/modules/gallery/helpers/system.php b/modules/gallery/helpers/system.php index 9815d588..e7e58a70 100644 --- a/modules/gallery/helpers/system.php +++ b/modules/gallery/helpers/system.php @@ -47,20 +47,13 @@ class system_Core { * It allows the caller to specify a prefix and an extension. * It always places the file in TMPPATH. */ - static function temp_filename($prefix = "", $extension = "") { - return self::_tempnam(TMPPATH, $prefix, ".$extension", "tempnam"); - } - - /** - * This helper provides a dependency-injected implementation of tempnam. - */ - static function _tempnam($dir, $prefix, $postfix, $builtin) { + static function temp_filename($prefix="", $extension="") { do { - $basename = call_user_func($builtin, $dir, $prefix); + $basename = tempnam(TMPPATH, $prefix); if (!$basename) { return false; } - $filename = $basename . $postfix; + $filename = "$basename.$extension"; $success = !file_exists($filename) && @rename($basename, $filename); if (!$success) { @unlink($basename); @@ -68,4 +61,4 @@ class system_Core { } while (!$success); return $filename; } -}
\ No newline at end of file +} |