Changeset 3295:40d0207e520d
- Timestamp:
- 08/01/16 15:31:14 (9 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/media.php
r3268 r3295 32 32 33 33 // Attachement type if any 34 $link_type = !empty($_REQUEST['link_type']) ? $_REQUEST['link_type']: null;34 $link_type = !empty($_REQUEST['link_type']) ? html::escapeHTML($_REQUEST['link_type']) : null; 35 35 36 36 $page = !empty($_GET['page']) ? max(1,(integer) $_GET['page']) : 1; … … 60 60 61 61 # Get query if any 62 $q = isset($_REQUEST['q']) ? $_REQUEST['q']: null;62 $q = isset($_REQUEST['q']) ? html::escapeHTML($_REQUEST['q']) : null; 63 63 64 64 # Sort combo
Note: See TracChangeset
for help on using the changeset viewer.