@@ -815,7 +815,7 @@ static PHP_INI_MH(OnUpdateUseOnlyCookies)
815
815
bool * p = (bool * ) ZEND_INI_GET_ADDR ();
816
816
* p = zend_ini_parse_bool (new_value );
817
817
if (!* p ) {
818
- php_error_docref (NULL , E_DEPRECATED , "Disabling session.use_only_cookies INI setting is deprecated" );
818
+ php_error_docref ("session.configuration" , E_DEPRECATED , "Disabling session.use_only_cookies INI setting is deprecated" );
819
819
}
820
820
return SUCCESS ;
821
821
}
@@ -827,7 +827,7 @@ static PHP_INI_MH(OnUpdateUseTransSid)
827
827
bool * p = (bool * ) ZEND_INI_GET_ADDR ();
828
828
* p = zend_ini_parse_bool (new_value );
829
829
if (* p ) {
830
- php_error_docref (NULL , E_DEPRECATED , "Enabling session.use_trans_sid INI setting is deprecated" );
830
+ php_error_docref ("session.configuration" , E_DEPRECATED , "Enabling session.use_trans_sid INI setting is deprecated" );
831
831
}
832
832
return SUCCESS ;
833
833
}
@@ -837,7 +837,7 @@ static PHP_INI_MH(OnUpdateRefererCheck)
837
837
SESSION_CHECK_ACTIVE_STATE ;
838
838
SESSION_CHECK_OUTPUT_STATE ;
839
839
if (ZSTR_LEN (new_value ) != 0 ) {
840
- php_error_docref (NULL , E_DEPRECATED , "Usage of session.referer_check INI setting is deprecated" );
840
+ php_error_docref ("session.configuration" , E_DEPRECATED , "Usage of session.referer_check INI setting is deprecated" );
841
841
}
842
842
return OnUpdateString (entry , new_value , mh_arg1 , mh_arg2 , mh_arg3 , stage );
843
843
}
0 commit comments