Changeset 442282
- Timestamp:
- 09/22/2011 07:14:23 PM (15 years ago)
- File:
-
- 1 edited
-
wordpress-custom-fields/trunk/wp-customfields.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-custom-fields/trunk/wp-customfields.php
r442277 r442282 24 24 $_POST['wpcf'][$i] = "wpcf_" . $_POST['wpcf'][$i]; 25 25 $_POST['wpcf'][$i] = str_replace("\\","",str_replace("'","",str_replace('"', '', $_POST['wpcf'][$i]))); 26 update_option( $_POST['wpcf'][$i], $_POST['wpcfv'][$i]);26 update_option(substr($_POST['wpcf'][$i],0,100), $_POST['wpcfv'][$i]); 27 27 } 28 28 else {
Note: See TracChangeset
for help on using the changeset viewer.