From ab07bc1fff27c19b390e0f57ceb4a0523085fdfa Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sun, 17 Mar 2019 14:53:56 -0400 Subject: [PATCH] Fixed 7.2 compat issue --- ext/date/php_date.c | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ext/date/php_date.c b/ext/date/php_date.c index f6f0c6468a4..7d4f9aac704 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -4742,20 +4742,20 @@ PHP_METHOD(DatePeriod, getDateInterval) */ PHP_METHOD(DatePeriod, getRecurrences) { - php_period_obj *dpobj; - php_date_obj *dateobj; + php_period_obj *dpobj; + php_date_obj *dateobj; - if (zend_parse_parameters_none() == FAILURE) { - return; - } + if (zend_parse_parameters_none() == FAILURE) { + return; + } - dpobj = Z_PHPPERIOD_P(ZEND_THIS); + dpobj = Z_PHPPERIOD_P(getThis()); - if (0 == dpobj->recurrences - dpobj->include_start_date) { - return; - } + if (0 == dpobj->recurrences - dpobj->include_start_date) { + return; + } - RETURN_LONG(dpobj->recurrences - dpobj->include_start_date); + RETURN_LONG(dpobj->recurrences - dpobj->include_start_date); } /* }}} */