Plugin Directory

Changeset 1188482


Ignore:
Timestamp:
06/27/2015 06:29:30 AM (11 years ago)
Author:
latorante
Message:

Updating to version 2.9.1

Location:
genoo/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • genoo/trunk/Genoo.php

    r1187235 r1188482  
    66    Author URI: http://www.genoo.com/
    77    Author Email: info@genoo.com
    8     Version: 2.9.0.5
     8    Version: 2.9.1
    99    License: GPLv2
    1010    Text Domain: genoo
  • genoo/trunk/GenooCheck.php

    r1121144 r1188482  
    3939                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
    4040            );
    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))){
    4343            $memoryLimitReadable = GenooCheck::getReadebleBytes($memoryLimit);
    4444            $minMemoryLimitReadable = GenooCheck::getReadebleBytes($checkMinMemory);
  • genoo/trunk/libs/Genoo/RepositoryForms.php

    r882847 r1188482  
    1212namespace Genoo;
    1313
     14use Genoo\Wordpress\Utils;
    1415
    1516class RepositoryForms extends Repository
     
    7071            }
    7172        } catch(\Exception $e){}
    72         return $prepForm;
     73        // Get Lumen class without "http://" and "https://" here already
     74        return Utils::nonProtocolUrl($prepForm);
    7375    }
    7476
     
    8991            }
    9092        } catch(\Exception $e){}
    91 
    9293        return $formsVars;
    9394    }
  • genoo/trunk/readme.txt

    r1187234 r1188482  
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    8 Version: 2.9.0.5
     8Stable tag: 2.9.1
    99
    1010Combine the flexibility of WordPress with the power of Genoo and experience amazing results!
Note: See TracChangeset for help on using the changeset viewer.