Upgrade CodeIgniter 3.1.9 => 3.1.11
This commit is contained in:
@@ -242,10 +242,10 @@ static void mermsemr_object_free(zend_object *object)
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------ // ------------------------------------------------------------------
|
||||
PHP_MINIT_FUNCTION(mermsemr_api_sameye)
|
||||
PHP_MINIT_FUNCTION(mermsemr_api_oameye)
|
||||
{
|
||||
zend_class_entry ce;
|
||||
INIT_NS_CLASS_ENTRY(ce, MERMSEMR_API_SAMEYE_NS, "MermsEmr", mermsemr_methods);
|
||||
INIT_NS_CLASS_ENTRY(ce, MERMSEMR_API_OAMEYE_NS, "MermsEmr", mermsemr_methods);
|
||||
mermsemr_ce = zend_register_internal_class(&ce TSRMLS_CC);
|
||||
mermsemr_ce->create_object = mermsemr_object_new;
|
||||
|
||||
@@ -266,7 +266,7 @@ PHP_MINIT_FUNCTION(mermsemr_api_sameye)
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------ // ------------------------------------------------------------------
|
||||
PHP_MINFO_FUNCTION(mermsemr_api_sameye)
|
||||
PHP_MINFO_FUNCTION(mermsemr_api_oameye)
|
||||
{
|
||||
php_info_print_table_start();
|
||||
php_info_print_table_row(2, "MERMSEMR API support", "enabled");
|
||||
@@ -274,31 +274,31 @@ PHP_MINFO_FUNCTION(mermsemr_api_sameye)
|
||||
php_info_print_table_row(2, "Config File", MERMSEMR_CONFIG"mermsemr_api.conf");
|
||||
php_info_print_table_row(2, "Build Date", __DATE__);
|
||||
php_info_print_table_row(2, "Build Time", __TIME__);
|
||||
php_info_print_table_row(2, "Namespace", MERMSEMR_API_SAMEYE_NS);
|
||||
php_info_print_table_row(2, "Version", PHP_MERMSEMR_API_SAMEYE_EXTVER);
|
||||
php_info_print_table_row(2, "Namespace", MERMSEMR_API_OAMEYE_NS);
|
||||
php_info_print_table_row(2, "Version", PHP_MERMSEMR_API_OAMEYE_EXTVER);
|
||||
php_info_print_table_end();
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------ // ------------------------------------------------------------------
|
||||
zend_module_entry mermsemr_api_sameye_module_entry = {
|
||||
zend_module_entry mermsemr_api_oameye_module_entry = {
|
||||
#if ZEND_MODULE_API_NO >= 20010901
|
||||
STANDARD_MODULE_HEADER,
|
||||
#endif
|
||||
PHP_MERMSEMR_API_SAMEYE_EXTNAME,
|
||||
PHP_MERMSEMR_API_OAMEYE_EXTNAME,
|
||||
NULL, /* Functions */
|
||||
PHP_MINIT(mermsemr_api_sameye),
|
||||
PHP_MINIT(mermsemr_api_oameye),
|
||||
NULL, /* MSHUTDOWN */
|
||||
NULL, /* RINIT */
|
||||
NULL, /* RSHUTDOWN */
|
||||
PHP_MINFO(mermsemr_api_sameye), /* MINFO */
|
||||
PHP_MINFO(mermsemr_api_oameye), /* MINFO */
|
||||
#if ZEND_MODULE_API_NO >= 20010901
|
||||
PHP_MERMSEMR_API_SAMEYE_EXTVER,
|
||||
PHP_MERMSEMR_API_OAMEYE_EXTVER,
|
||||
#endif
|
||||
STANDARD_MODULE_PROPERTIES
|
||||
};
|
||||
|
||||
//#ifdef COMPILE_DL_MERMSEMR_API_SAMEYE
|
||||
//#ifdef COMPILE_DL_MERMSEMR_API_OAMEYE
|
||||
extern "C" {
|
||||
ZEND_GET_MODULE(mermsemr_api_sameye)
|
||||
ZEND_GET_MODULE(mermsemr_api_oameye)
|
||||
}
|
||||
//#endif
|
||||
|
||||
Reference in New Issue
Block a user