Changeset 1463306
- Timestamp:
- 07/29/2016 04:11:33 PM (10 years ago)
- Location:
- avh-first-defense-against-spam/trunk
- Files:
-
- 4 edited
-
avh-fdas.php (modified) (1 diff)
-
class/avh-fdas.admin.php (modified) (2 diffs)
-
class/avh-fdas.db.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
avh-first-defense-against-spam/trunk/avh-fdas.php
r1458510 r1463306 4 4 * URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: This plugin gives you the ability to block spammers before content is served. 6 * Version: 3.7. 26 * Version: 3.7.3 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/ -
avh-first-defense-against-spam/trunk/class/avh-fdas.admin.php
r1458510 r1463306 1185 1185 echo ' </div>'; 1186 1186 echo ' </div>'; // dashboard-widgets-wrap 1187 echo '<p class="submit">< getInput class="button-primary" type="submit" name="updateoptions" value="' .1187 echo '<p class="submit"><input class="button-primary" type="submit" name="updateoptions" value="' . 1188 1188 __('Save Changes', 1189 1189 'avh-fdas') . … … 1479 1479 echo '<br class="clear"/>'; 1480 1480 echo ' </div>'; // dashboard-widgets-wrap 1481 echo '<p class="submit">< getInputclass="button-primary" type="submit" name="updateoptions" value="' .1481 echo '<p class="submit"><input class="button-primary" type="submit" name="updateoptions" value="' . 1482 1482 __('Save Changes', 1483 1483 'avh-fdas') . -
avh-first-defense-against-spam/trunk/class/avh-fdas.db.php
r1458510 r1463306 238 238 $ip_cache_arr['ip'] = AVH_Common::getIp2long($ip_cache_arr['ip']); 239 239 240 $ip = $this->getIP($ip_cache_arr['ip'], ARRAY_A);241 242 $ip = esc_sql($ip);243 244 $ip_cache_arr = array_merge($ip , $ip_cache_arr);240 $ip_data = $this->getIP($ip_cache_arr['ip'], ARRAY_A); 241 242 $ip_data = esc_sql($ip_data); 243 244 $ip_cache_arr = array_merge($ip_data, $ip_cache_arr); 245 245 246 246 extract(stripslashes_deep($ip_cache_arr), EXTR_SKIP); -
avh-first-defense-against-spam/trunk/readme.txt
r1458510 r1463306 5 5 Requires at least: 4.5 6 6 Tested up to: 4.5 7 Stable tag: 3.7. 27 Stable tag: 3.7.3 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 125 125 126 126 == Changelog == 127 = Version 3.7.3 = 128 * Missing buttons in the admin section. 129 * MySQLi error. 130 127 131 = Version 3.7.2 = 128 132 * Clean up code
Note: See TracChangeset
for help on using the changeset viewer.