diff options
| author | colings <colings@example.com> | 2011-02-23 20:31:07 -0600 | 
|---|---|---|
| committer | colings <colings@example.com> | 2011-02-23 20:31:07 -0600 | 
| commit | ca47b887f5bb8ad311c4ab7e4c71aace37ba88e9 (patch) | |
| tree | 7881ec380a1d317b572e15ff2b760b348bb21cc2 /modules/gallery/controllers/quick.php | |
| parent | 68edb2454dcd2044a82d8e8f8a1b96330e6d3b8c (diff) | |
Added extra arg to gallery_graphics calls and updated users
Diffstat (limited to 'modules/gallery/controllers/quick.php')
| -rw-r--r-- | modules/gallery/controllers/quick.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/modules/gallery/controllers/quick.php b/modules/gallery/controllers/quick.php index 17abc39f..da4768fd 100644 --- a/modules/gallery/controllers/quick.php +++ b/modules/gallery/controllers/quick.php @@ -38,7 +38,7 @@ class Quick_Controller extends Controller {      if ($degrees) {        $tmpfile = tempnam(TMPPATH, "rotate") . "." .          pathinfo($item->file_path(), PATHINFO_EXTENSION); -      gallery_graphics::rotate($item->file_path(), $tmpfile, array("degrees" => $degrees)); +      gallery_graphics::rotate($item->file_path(), $tmpfile, array("degrees" => $degrees), $item);        $item->set_data_file($tmpfile);        $item->save();        unlink($tmpfile); | 
