Changeset 760164
- Timestamp:
- 08/21/2013 05:24:33 PM (13 years ago)
- Location:
- wordpress-by-circle-tree/trunk
- Files:
-
- 2 edited
-
includes/class.wp_login_lockdown.php (modified) (2 diffs)
-
wordpress-by-circletree.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-by-circle-tree/trunk/includes/class.wp_login_lockdown.php
r756947 r760164 452 452 ob_start(); 453 453 require_once wp_by_ct::get_path() . 'includes' . DS . 'pages'. DS. 'captcha.php'; 454 $str = ob_get_clean(); 454 $str = ob_get_contents(); 455 ob_end_clean(); 455 456 wp_die($str,'ERROR | TOO MANY LOGIN ATTEMPTS', array('response'=>503)); 456 457 } … … 651 652 } 652 653 private function get_whitelisted_ips() { 653 return get_option(self::WHITELISTED_IP_NAME );654 return get_option(self::WHITELISTED_IP_NAME, array()); 654 655 } 655 656 private function get_blocked_ips () { 656 return get_option(self::BLOCKED_IP_NAME );657 return get_option(self::BLOCKED_IP_NAME, array()); 657 658 } 658 659 private function is_ip_blocked () { -
wordpress-by-circle-tree/trunk/wordpress-by-circletree.php
r756953 r760164 5 5 Description: Secure Login Screen for Circle Tree powered websites 6 6 Author: Circle Tree, LLC 7 Version: 3.0. 57 Version: 3.0.6 8 8 Author URI: http://mycircletree.com/ 9 9 */
Note: See TracChangeset
for help on using the changeset viewer.