diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-07 14:25:05 -0800 | 
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-02-07 14:25:05 -0800 | 
| commit | e2e637064aa3cd66ddd3636d85314a168f2c9c91 (patch) | |
| tree | 782051ae51bb2831e3752a4671c44beed199f6fe /modules | |
| parent | 6783de24572eb3a84dd43d125686b5f1df33f305 (diff) | |
The adjustment for before or after based on whether the locales rtl or not is now done in the browser.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/organize/controllers/organize.php | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/modules/organize/controllers/organize.php b/modules/organize/controllers/organize.php index 38e8ca58..9d9da65e 100644 --- a/modules/organize/controllers/organize.php +++ b/modules/organize/controllers/organize.php @@ -73,9 +73,9 @@ class Organize_Controller extends Controller {      access::required("view", $album);      access::required("edit", $album); -    if (locales::is_rtl()) {    // invert the position if the locale is rtl -      $before_or_after = $before_or_after == "after" ? "before" : "after"; -    } +    //if (locales::is_rtl()) {    // invert the position if the locale is rtl +    //  $before_or_after = $before_or_after == "after" ? "before" : "after"; +    //}      $source_ids = Input::instance()->post("source_ids", array()); | 
