Changeset 795:eab85d2136f6 for admin/posts.php
- Timestamp:
- 02/08/12 21:00:24 (13 years ago)
- Branch:
- 2.4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/posts.php
r500 r795 138 138 /* Get posts 139 139 -------------------------------------------------------- */ 140 $user_id = !empty($_GET['user_id']) ? $_GET['user_id']: '';141 $cat_id = !empty($_GET['cat_id']) ? $_GET['cat_id']: '';142 $status = isset($_GET['status']) ? $_GET['status']: '';143 $selected = isset($_GET['selected']) ? $_GET['selected']: '';144 $month = !empty($_GET['month']) ? $_GET['month']: '';145 $lang = !empty($_GET['lang']) ? $_GET['lang']: '';146 $sortby = !empty($_GET['sortby']) ? $_GET['sortby']: 'post_dt';147 $order = !empty($_GET['order']) ? $_GET['order']: 'desc';140 $user_id = !empty($_GET['user_id']) ? html::escapeHTML($_GET['user_id']) : ''; 141 $cat_id = !empty($_GET['cat_id']) ? html::escapeHTML($_GET['cat_id']) : ''; 142 $status = isset($_GET['status']) ? html::escapeHTML($_GET['status']) : ''; 143 $selected = isset($_GET['selected']) ? html::escapeHTML($_GET['selected']) : ''; 144 $month = !empty($_GET['month']) ? html::escapeHTML($_GET['month']) : ''; 145 $lang = !empty($_GET['lang']) ? html::escapeHTML($_GET['lang']) : ''; 146 $sortby = !empty($_GET['sortby']) ? html::escapeHTML($_GET['sortby']) : 'post_dt'; 147 $order = !empty($_GET['order']) ? html::escapeHTML($_GET['order']) : 'desc'; 148 148 149 149 $show_filters = false;
Note: See TracChangeset
for help on using the changeset viewer.