Changeset 398036
- Timestamp:
- 06/16/2011 05:16:27 PM (15 years ago)
- Location:
- magic-fields/trunk
- Files:
-
- 8 edited
-
Main.php (modified) (1 diff)
-
RCCWP_CustomFieldPage.php (modified) (1 diff)
-
RCCWP_GetFile.php (modified) (1 diff)
-
RCCWP_upload.php (modified) (2 diffs)
-
RCCWP_upload_ajax.php (modified) (1 diff)
-
README.markdown (modified) (2 diffs)
-
js/groups.js (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
magic-fields/trunk/Main.php
r394087 r398036 5 5 Description: Create custom write panels and easily retrieve their values in your templates. 6 6 Author: Hunk and Gnuget 7 Version: 1.5. 57 Version: 1.5.6 8 8 Author URI: http://magicfields.org 9 9 */ -
magic-fields/trunk/RCCWP_CustomFieldPage.php
r394087 r398036 90 90 $FIELD_TYPES['audio'], 91 91 $FIELD_TYPES['related_type'], 92 $FIELD_TYPES['Image (Upload Media)'] 92 $FIELD_TYPES['Image (Upload Media)'], 93 $FIELD_TYPES['markdown_textbox'] 93 94 ))){ ?> 94 95 <tr valign="top"> -
magic-fields/trunk/RCCWP_GetFile.php
r314766 r398036 67 67 if (!empty($_POST['upload_url'])) { 68 68 // file was send from browser 69 $_POST['upload_url'] = clean_url($_POST['upload_url']);69 $_POST['upload_url'] = esc_url($_POST['upload_url']); 70 70 $filename = DownloadFile(); 71 71 -
magic-fields/trunk/RCCWP_upload.php
r314766 r398036 39 39 } 40 40 41 42 43 41 if (isset($_POST['fileframe'])){ 42 43 if ( empty($_POST) || !wp_verify_nonce($_POST['checking'],'nonce_upload_file') ){ 44 print 'Sorry, your nonce did not verify.'; 45 exit; 46 } 44 47 $operationSuccess = "false"; 45 48 … … 249 252 </table> 250 253 251 254 <?php wp_nonce_field('nonce_upload_file','checking'); ?> 252 255 <input type="hidden" name="fileframe" value="true" /> 253 256 <input type="hidden" name="imgnum" /> -
magic-fields/trunk/RCCWP_upload_ajax.php
r350728 r398036 18 18 } 19 19 20 20 if (!(is_user_logged_in() && 21 (current_user_can('edit_posts') || current_user_can('edit_published_pages')))) 22 die(__("Authentication failed!",$mf_domain)); 21 23 22 24 /** -
magic-fields/trunk/README.markdown
r394087 r398036 3 3 * Contributors: [Astrata Software](http://astrata.mx) [Travis Hensgen](http://traversal.com.au/), [Jeff Minard](http://jrm.cc/ "Jeff Minard"), [Carlos Mendoza](http://http://github.com/kaziel/Magic-Fields "Carlos Mendoza"), Michael Bayard, [Doc4](doc4design.com/ "Doc4") 4 4 * Tested up to: Wordpress 3.0.1 5 * Stable tag: 1.5. 55 * Stable tag: 1.5.6 6 6 * Description: Magic Fields is a feature rich WordPress CMS plugin. 7 7 … … 18 18 19 19 ## Changelog ## 20 21 ###1.5.6### 22 * Security bug fixed related with the uploader 20 23 21 24 ###1.5.5### -
magic-fields/trunk/js/groups.js
r394087 r398036 993 993 994 994 //validate maxlength 995 jQuery('.mf-field.maxlength input, .mf-field.maxlength textarea'). keyup(function(){995 jQuery('.mf-field.maxlength input, .mf-field.maxlength textarea').live( 'keyup', function(){ 996 996 var maximal = parseInt(jQuery(this).attr('maxlength')); 997 997 var actual = parseInt(jQuery(this).val().length); -
magic-fields/trunk/readme.txt
r394087 r398036 5 5 Requires at least: 2.9 6 6 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=edgar%40programador%2ecom&lc=GB&item_name=Donation%20Magic%20Fields¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHostedGuest 7 Stable tag: 1.5. 57 Stable tag: 1.5.6 8 8 Description: Magic Fields is a feature rich WordPress CMS plugin. 9 9 … … 28 28 29 29 == Changelog == 30 31 = 1.5.6 = 32 * Security bug fixed related with the uploader 33 30 34 31 35 = 1.5.5 =
Note: See TracChangeset
for help on using the changeset viewer.