Changeset 1496577
- Timestamp:
- 09/16/2016 01:47:26 AM (10 years ago)
- Location:
- ose-firewall/trunk
- Files:
-
- 4 edited
-
ose_firewall_badge.php (modified) (1 diff)
-
ose_wordpress_firewall.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
vendor/oseframework/installer/installer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ose-firewall/trunk/ose_firewall_badge.php
r1496143 r1496577 4 4 Description: Plugin For Showing Centrora Security Badge 5 5 Author: Centrora Security 6 Version: 6.5.1 06 Version: 6.5.11 7 7 */ 8 8 //include(dirname(__FILE__).'/includes/oseBadgeWidget.php'); -
ose-firewall/trunk/ose_wordpress_firewall.php
r1496143 r1496577 5 5 Description: Centrora Security (previously OSE Firewall) - A WordPress Security Firewall plugin created by Centrora. Protect your WordPress site by identify any malicious codes, spam, virus, SQL injection, and security vulnerabilities. 6 6 Author: Centrora (Previously ProWeb) 7 Version: 6.5.1 07 Version: 6.5.11 8 8 Author URI: http://www.centrora.com/ 9 9 */ -
ose-firewall/trunk/readme.txt
r1496143 r1496577 6 6 Requires at least: 3.7 7 7 Tested up to: 4.5.2 8 Stable tag: 6.5.1 08 Stable tag: 6.5.11 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 165 165 == Changelog == 166 166 167 = 6.5.11 = 168 * Fixed installer not working on Windows server due to the lack of INNODB engine 169 167 170 = 6.5.10 = 168 171 * Updated API IP address 169 * Updated API Web Address to https protocols170 172 171 173 = 6.5.9 = -
ose-firewall/trunk/vendor/oseframework/installer/installer.php
r1387925 r1496577 80 80 $queries = $this->_splitQueries($data); 81 81 foreach ($queries as $query) 82 { 82 { 83 if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') { 84 $query = str_replace('InnoDB', 'MyISAM', $query); 85 } 83 86 $this->db->setQuery($query); 84 87 if(!$this->db->query()) {
Note: See TracChangeset
for help on using the changeset viewer.