Changeset 28 for trunk/wp-content/plugins/xpressme/xpressme_class.php
- Timestamp:
- Dec 15, 2008, 5:47:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/xpressme_class.php
r26 r28 7 7 var $is_use_xoops_upload_path; 8 8 var $is_theme_sidebar_disp; 9 9 var $is_save_post_revision; 10 10 //constructor 11 11 function XPressME_Class() … … 32 32 $this->is_use_xoops_upload_path = true; 33 33 $this->is_theme_sidebar_disp = true; 34 $this->is_save_post_revision = true; 34 35 } 35 36 … … 65 66 $this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path'])); 66 67 $this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp'])); 68 $this->is_save_post_revision = stripslashes(trim($_POST['ch_is_save_post_revision'])); 67 69 } 68 70 … … 116 118 __('NO','xpressme') 117 119 ); 120 echo $this->yes_no_radio_option('is_save_post_revision', 121 __('The change tracking of the post is preserved','xpressme'), 122 __('YES','xpressme'), 123 __('NO','xpressme') 124 ); 118 125 119 126 // $this->is_use_xoops_upload_path_html(); … … 149 156 return $uploads; 150 157 } 158 151 159 } 152 160 ?>
Note: See TracChangeset
for help on using the changeset viewer.