Changeset 20207 for extensions/lightbox/save_history.php
- Timestamp:
- 01/17/13 14:39:41 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/lightbox/save_history.php
r5734 r20207 36 36 if (!empty($_POST['section'])) 37 37 { 38 $page['section'] = mysql_real_escape_string($_POST['section']);38 $page['section'] = pwg_db_real_escape_string($_POST['section']); 39 39 } 40 40 if (!empty($_POST['catid'])) 41 41 { 42 $page['category']['id'] = mysql_real_escape_string($_POST['catid']);42 $page['category']['id'] = pwg_db_real_escape_string($_POST['catid']); 43 43 } 44 44 if ('tags'==@$page['section'] and !empty($_POST['tagids'])) 45 45 { 46 $tags_string = mysql_real_escape_string($_POST['tagids']);46 $tags_string = pwg_db_real_escape_string($_POST['tagids']); 47 47 } 48 48
Note: See TracChangeset
for help on using the changeset viewer.