Changeset 558 for trunk/plog-admin/plog-manage.php
- Timestamp:
- 07/15/08 13:36:59 (5 months ago)
- Files:
-
- 1 modified
-
trunk/plog-admin/plog-manage.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plog-admin/plog-manage.php
r555 r558 132 132 if (empty($_REQUEST['level'])) { 133 133 $_REQUEST['level'] = ''; 134 } ;134 } 135 135 136 136 // here we will determine if we need to perform a move or delete action. … … 186 186 187 187 if (isset($_REQUEST["selected"])) { 188 foreach ($_REQUEST["selected"] as $mov_id) {188 foreach ($_REQUEST["selected"] as $mov_id) { 189 189 190 190 // if we are using pictures we need to update the parent_collection as well … … 196 196 } else { 197 197 $output .= "\n\t" . '<p class="errors">' . $result['errors'] . '</p>' . "\n"; 198 }; 199 } 200 else if ($level == "albums") { 198 } 199 } else if ($level == "albums") { 201 200 // if we are moving entire albums then we need to rename the folder 202 201 // $pid is our target collection id, $mov_id is our source album … … 207 206 } else { 208 207 $output .= "\n\t" . '<p class="errors">' . $result['errors'] . '</p>' . "\n"; 209 } ;208 } 210 209 } 211 210
