Commits on Apr 1, 2015
  1. Revert "Merge branch 'PHP-5.5' into PHP-5.6"

    This reverts commit aa22e80, reversing
    changes made to 3e7f47c.
    
    Conflicts:
    	ext/date/php_date.c
    smalyshev committed Apr 1, 2015
Commits on Mar 23, 2015
  1. Merge branch 'PHP-5.5' into PHP-5.6

    * PHP-5.5:
      Adding a new `createFromImmutable` method to the `DateTime` class to mirror the current `DateTime::createFromMutable()`
    smalyshev committed Mar 23, 2015
  2. Merge branch 'PHP-5.5' into PHP-5.6

    * PHP-5.5:
      add CURL_HTTP_VERSION_2_0 and CURL_VERSION_HTTP2
    smalyshev committed Mar 23, 2015
Commits on Mar 9, 2015
  1. Merge branch 'pull-request/1135'

    * pull-request/1135:
      Return void like other functions
      Use zend_parse_parameters_none()
      Implemented FR #45235 A way to clear or reset the results for error_get_last()
    smalyshev committed Mar 9, 2015
Commits on Feb 19, 2015
  1. add NEWS for <=>

    smalyshev committed Feb 19, 2015
Commits on Dec 16, 2014
  1. add more BC breaks

    smalyshev committed Dec 16, 2014
Commits on Dec 15, 2014
  1. add BC breaks from PHPNG RFC

    smalyshev committed Dec 15, 2014
  2. small fixes to UPGRADING

    smalyshev committed Dec 15, 2014
Commits on Dec 1, 2014
  1. Merge branch 'pull-request/877'

    * pull-request/877:
      gmp_random_seed()
    smalyshev committed Dec 1, 2014
Commits on Nov 23, 2014
  1. Add NEWS & UPGRADING

    smalyshev committed Nov 23, 2014
Commits on Oct 14, 2014
  1. update NEWS and UPGRADING

    smalyshev committed Oct 14, 2014
Commits on Jun 26, 2014
Commits on Jun 9, 2014
  1. Merge branch 'PHP-5.4' into PHP-5.5

    * PHP-5.4:
      add news
      Bug 49898 __getCookies() method implementation
    smalyshev committed Jun 9, 2014
  2. add news

    smalyshev committed Jun 9, 2014
Commits on Jan 26, 2014
  1. Merge branch 'PHP-5.4' into PHP-5.5

    * PHP-5.4:
      Implement ldap_modify_batch.
    
    Conflicts:
    	ext/ldap/ldap.c
    smalyshev committed Jan 26, 2014
  2. Merge branch 'pull-request/571' into PHP-5.4

    * pull-request/571:
      Implement ldap_modify_batch.
    smalyshev committed Jan 26, 2014
Commits on Aug 11, 2013
  1. Merge branch 'pull-request/325' into PHP-5.5

    * pull-request/325:
      Add schema default/fixed value support
    smalyshev committed Aug 11, 2013
Commits on Aug 5, 2013
  1. add news about session fix

    smalyshev committed Aug 5, 2013
Commits on Jul 22, 2013
Commits on Jun 28, 2013
Commits on Mar 20, 2013
  1. add array_column()

    smalyshev committed Mar 20, 2013
Commits on Jan 29, 2013
  1. Add news for bug #60524

    smalyshev committed Jan 29, 2013
  2. oops, unintended addition

    smalyshev committed Jan 29, 2013
  3. Merge branch 'PHP-5.5'

    * PHP-5.5:
      Implement fix for bug #46439 - add CURLFile class for safer uploads
    
    Conflicts:
    	UPGRADING
    smalyshev committed Jan 29, 2013
Commits on Jan 28, 2013
  1. add new features

    smalyshev committed Jan 28, 2013
Commits on Aug 8, 2012
  1. News for bug#40459

    smalyshev committed Aug 8, 2012
Commits on Aug 6, 2012
  1. Merge branch 'pull-request/132'

    * pull-request/132:
      OK, bye bye JavaScript, let's just include credits before license
      Nicer (JSLint-compliant!) credits reveal JavaScript
      Removed now-unnecessary expose_php checks for logo
      Fixed small misalignment in prev commit
      Removed Logo GUIDs and replaced with Data URIs and div hidden with JS
    smalyshev committed Aug 6, 2012
  2. add note for mcrypt_ecb

    smalyshev committed Aug 6, 2012
Commits on Jul 15, 2012
  1. typo

    smalyshev committed Jul 15, 2012
Commits on Jul 14, 2012
  1. add NEWS/UPGRADING

    smalyshev committed Jul 14, 2012
Commits on Jul 7, 2012
  1. Merge branch 'pull-request/112' into PHP-5.4

    * pull-request/112:
      Added in NEWS and UPGRADING for feature 55218
      Adding in test for feature 55218
      Implements feature 55218
    smalyshev committed Jul 7, 2012
Commits on May 24, 2012
  1. Merge branch 'pull-request/54'

    * pull-request/54:
      Allow arbitrary expressions for empty()
    
        This change is as per RFC https://wiki.php.net/rfc/empty_isset_exprs.
    
        The change allows passing the result of function calls and other
        expressions to the empty() language construct. This is accomplished by
        simply rewriting empty(expr) to !expr.
    
        The change does not affect the suppression of errors when using empty()
        on variables. empty($undefinedVar) will continue not to throw errors.
        When an expression is used inside empty() on the other hand, errors will
        not be suppressed. Thus empty($undefinedVar + $somethingElse) *will*
        throw a notice.
    
        The change also does not make empty() into a real function, so using
        'empty' as a callback is still not possible.
    
        In addition to the empty() changes the commit adds nicer error messages
        when isset() is used on function call results or other expressions.
    smalyshev committed May 24, 2012