Changeset 1188482
- Timestamp:
- 06/27/2015 06:29:30 AM (11 years ago)
- Location:
- genoo/trunk
- Files:
-
- 4 edited
-
Genoo.php (modified) (1 diff)
-
GenooCheck.php (modified) (1 diff)
-
libs/Genoo/RepositoryForms.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
genoo/trunk/Genoo.php
r1187235 r1188482 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 2.9. 0.58 Version: 2.9.1 9 9 License: GPLv2 10 10 Text Domain: genoo -
genoo/trunk/GenooCheck.php
r1121144 r1188482 39 39 sprintf(__('We re really sorry, but you need PHP version at least <strong>%1$s</strong> to run <strong>Genoo plugin.</strong> You are currently using PHP version <strong>%2$s</strong>', 'genoo'), $checkMinPHP, PHP_VERSION) . $recoverLink 40 40 ); 41 // Check PHP Memory Limit 42 } elseif(!version_compare($memoryLimit, $checkMinMemory, '>=') ){41 // Check PHP Memory Limit, and fallcase if its not unlimited (-1) 42 } elseif(!version_compare($memoryLimit, $checkMinMemory, '>=') && ((self::getMemoryLimit() !== '-1' || self::getMemoryLimit() !== -1))){ 43 43 $memoryLimitReadable = GenooCheck::getReadebleBytes($memoryLimit); 44 44 $minMemoryLimitReadable = GenooCheck::getReadebleBytes($checkMinMemory); -
genoo/trunk/libs/Genoo/RepositoryForms.php
r882847 r1188482 12 12 namespace Genoo; 13 13 14 use Genoo\Wordpress\Utils; 14 15 15 16 class RepositoryForms extends Repository … … 70 71 } 71 72 } catch(\Exception $e){} 72 return $prepForm; 73 // Get Lumen class without "http://" and "https://" here already 74 return Utils::nonProtocolUrl($prepForm); 73 75 } 74 76 … … 89 91 } 90 92 } catch(\Exception $e){} 91 92 93 return $formsVars; 93 94 } -
genoo/trunk/readme.txt
r1187234 r1188482 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Version: 2.9.0.5 8 Stable tag: 2.9.1 9 9 10 10 Combine the flexibility of WordPress with the power of Genoo and experience amazing results!
Note: See TracChangeset
for help on using the changeset viewer.