diff -r 2251fb41dbc7 -r 1e110b03ae96 web/lib/Zend/Version.php --- a/web/lib/Zend/Version.php Sun Apr 21 10:07:03 2013 +0200 +++ b/web/lib/Zend/Version.php Sun Apr 21 21:54:24 2013 +0200 @@ -14,9 +14,9 @@ * * @category Zend * @package Zend_Version - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License - * @version $Id: Version.php 23455 2010-11-29 16:24:55Z matthew $ + * @version $Id: Version.php 25289 2013-03-13 16:51:14Z matthew $ */ /** @@ -24,7 +24,7 @@ * * @category Zend * @package Zend_Version - * @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com) + * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ final class Zend_Version @@ -32,14 +32,14 @@ /** * Zend Framework version identification - see compareVersion() */ - const VERSION = '1.11.1'; + const VERSION = '1.12.3'; /** * The latest stable version Zend Framework available - * + * * @var string */ - protected static $_lastestVersion; + protected static $_latestVersion; /** * Compare the specified Zend Framework version string $version @@ -60,22 +60,22 @@ /** * Fetches the version of the latest stable release - * + * * @link http://framework.zend.com/download/latest * @return string */ public static function getLatest() { - if (null === self::$_lastestVersion) { - self::$_lastestVersion = 'not available'; + if (null === self::$_latestVersion) { + self::$_latestVersion = 'not available'; - $handle = fopen('http://framework.zend.com/api/zf-version', 'r'); + $handle = fopen('http://framework.zend.com/api/zf-version', 'r'); if (false !== $handle) { - self::$_lastestVersion = stream_get_contents($handle); + self::$_latestVersion = stream_get_contents($handle); fclose($handle); } } - return self::$_lastestVersion; + return self::$_latestVersion; } }