|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2012-05-07 14:20 UTC] eric dot caron at gmail dot com
[2012-09-26 14:09 UTC] asgentile at gmail dot com
[2012-09-26 18:53 UTC] eric dot caron at gmail dot com
[2014-02-13 18:22 UTC] omars@php.net
-Status: Open
+Status: Assigned
-Assigned To:
+Assigned To: omars
[2014-06-23 12:08 UTC] omars@php.net
-Status: Assigned
+Status: Wont fix
[2014-06-23 12:08 UTC] omars@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 09 09:00:01 2025 UTC |
Description: ------------ When using solr_get_version() to get the current version, it returns '1.0.1' for version 1.0.2. user@example.com:~$ php -v PHP 5.3.5-1ubuntu7.7 with Suhosin-Patch (cli) (built: Feb 11 2012 06:42:47) Copyright (c) 1997-2009 The PHP Group Zend Engine v2.3.0, Copyright (c) 1998-2010 Zend Technologies with Xdebug v2.1.0, Copyright (c) 2002-2010, by Derick Rethans user@example.com:~$ pecl list Installed packages, channel pecl.php.net: ========================================= Package Version State solr 1.0.2 stable Test script: --------------- <?php if (extension_loaded('solr')) { if ('1.0.2' !== solr_get_version()) { echo 'Wrong solr package version'; } else { echo 'Correct solr package version'; } } Expected result: ---------------- I expected the Verion string to be '1.0.2' Actual result: -------------- The actual result was '1.0.1'