Changeset 657566
- Timestamp:
- 01/23/2013 08:27:36 PM (13 years ago)
- Location:
- solvemedia/trunk
- Files:
-
- 8 edited
-
puzzle_reload.js (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
solvemedia.admin.inc (modified) (4 diffs)
-
solvemedia.cf7.inc (modified) (1 diff)
-
solvemedia.comment.inc (modified) (1 diff)
-
solvemedia.php (modified) (2 diffs)
-
solvemedia.reg.inc (modified) (1 diff)
-
solvemedialib.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solvemedia/trunk/puzzle_reload.js
r449925 r657566 1 1 // Copyright (c) 2010 SolveMedia Inc. 2 // $Id : puzzle_reload.js,v 1.5 2011/10/10 13:31:55 ilia Exp$2 // $Id$ 3 3 4 4 // The puzzle needs to be reset after a CF7 form submission -
solvemedia/trunk/readme.txt
r527647 r657566 4 4 Requires at least: 2.8.4 5 5 Tested up to: 3.3.1 6 Stable tag: 1.1. 06 Stable tag: 1.1.1 7 7 8 8 Secure & Monetize your site with Solve Media's CAPTCHA replacement. … … 43 43 == Changelog == 44 44 45 = 1.1.1 = 46 * CSRF protection for admin options page 47 45 48 = 1.1.0 = 46 49 * WPMS and BuddyPress support … … 57 60 58 61 == Upgrade Notice == 62 63 = 1.1.1 = 64 CSRF protection for admin options page 59 65 60 66 = 1.1.0 = -
solvemedia/trunk/solvemedia.admin.inc
r527339 r657566 1 1 <?php 2 3 /* 4 * Copyright (c) 2012 by Solve Media, Inc. 5 * Author: Ilia Fishbein 6 * Function: Portion of the WordPress plugin related to the administrator panel 7 * 8 * $Id$ 9 */ 2 10 3 11 function adcopy_wp_blog_domain () { … … 26 34 // Check form submission and update options if no error occurred 27 35 if (isset($_POST['submit'])) { 36 check_admin_referer( 'adcopy_admin_options', 'adcopy_nonce'); 37 28 38 $pattern = '/<.*?>/'; 29 39 $substitue = ''; … … 106 116 function sm_dropdown_languages() { 107 117 $lang_choices = array ( 108 'English' => 'en', 109 'Spanish' => 'es', 110 'French' => 'fr', 111 'German' => 'de', 112 'Italian' => 'it', 113 'Japanese' => 'jp', 114 'Yiddish' => 'yi' 118 'English' => 'en', 119 'Spanish' => 'es', 120 'French' => 'fr', 121 'German' => 'de', 122 'Italian' => 'it', 123 'Catalan' => 'ca', 124 'Polish' => 'pl', 125 'Hungarian' => 'hu', 126 'Swedish' => 'sv', 127 'Norwegian' => 'no', 128 'Portuguese' => 'pt', 129 'Dutch' => 'nl', 130 'Turkish' => 'tr', 131 'Japanese' => 'ja', 132 'Yiddish' => 'yi' 115 133 ); 116 134 … … 299 317 </table> 300 318 <div class="submit"> 319 <?php wp_nonce_field( 'adcopy_admin_options', 'adcopy_nonce' ); ?> 301 320 <input type="submit" name="submit" 302 321 value="<?php _e('Update Options') ?> »" /> -
solvemedia/trunk/solvemedia.cf7.inc
r527339 r657566 1 1 <?php 2 3 /* 4 * Copyright (c) 2012 by Solve Media, Inc. 5 * Author: Ilia Fishbein 6 * Function: Portion of the WordPress plugin related to Contact Form 7 7 * 8 * $Id$ 9 */ 2 10 3 11 if (file_exists($wp_plugin_dir . '/contact-form-7/includes/shortcodes.php')) -
solvemedia/trunk/solvemedia.comment.inc
r527339 r657566 1 1 <?php 2 3 /* 4 * Copyright (c) 2012 by Solve Media, Inc. 5 * Author: Ilia Fishbein 6 * Function: Portion of the WordPress plugin related to the comments section 7 * 8 * $Id$ 9 */ 2 10 3 11 function adcopy_wp_hash_comment($id) -
solvemedia/trunk/solvemedia.php
r527339 r657566 4 4 Plugin URI: http://www.solvemedia.com/ 5 5 Description: Integrates Solve Media's anti-spam solutions with wordpress 6 Version: 1.1. 06 Version: 1.1.1 7 7 Author: Ilia Fishbein 8 8 Email: support@solvemedia.com … … 12 12 Copyright (c) 2010 by Solve Media 13 13 14 $Id : solvemedia.php,v 1.5 2011/02/17 15:09:17 ilia Exp$14 $Id$ 15 15 */ 16 16 -
solvemedia/trunk/solvemedia.reg.inc
r527339 r657566 1 1 <?php 2 3 /* 4 * Copyright (c) 2012 by Solve Media, Inc. 5 * Author: Ilia Fishbein 6 * Function: Portion of the WordPress plugin related to registration 7 * 8 * $Id$ 9 */ 2 10 3 11 // Modify styling of the standard WordPress registration panel -
solvemedia/trunk/solvemedialib.php
r291678 r657566 6 6 * Function: SolveMedia API php code 7 7 * 8 * $Id : solvemedialib.php,v 1.2 2010/09/16 18:43:14 ilia Exp$8 * $Id$ 9 9 * 10 10 * This is a PHP library that handles calling SolveMedia.
Note: See TracChangeset
for help on using the changeset viewer.