Changeset 6697 for trunk/src/includes/admin/replies.php
- Timestamp:
- 09/13/2017 08:47:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/replies.php
r6573 r6697 288 288 } 289 289 290 $sendback = add_query_arg( array( 'updated' => $updated, 'ids' => join( ',', $post_ids ), 'locked' => $locked ), $sendback ); 290 $sendback = add_query_arg( array( 291 'updated' => $updated, 292 'ids' => implode( ',', $post_ids ), 293 'locked' => $locked 294 ), $sendback ); 291 295 292 296 } elseif ( 'unspam' === $doaction ) { … … 309 313 } 310 314 311 $sendback = add_query_arg( array( 'updated' => $updated, 'ids' => join( ',', $post_ids ), 'locked' => $locked ), $sendback ); 315 $sendback = add_query_arg( array( 316 'updated' => $updated, 317 'ids' => implode( ',', $post_ids ), 318 'locked' => $locked 319 ), $sendback ); 312 320 } 313 321
Note: See TracChangeset
for help on using the changeset viewer.