We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2381ffb commit 234c03aCopy full SHA for 234c03a
ext/ming/ming.c
@@ -4133,25 +4133,6 @@ PHP_MINFO_FUNCTION(ming)
4133
/* {{{ todo PHP_MINIT_FUNCTION(ming)
4134
*/
4135
4136
-#if PHP_API_VERSION == 20020918
4137
-static php4_fix_funcnames(char *class_name, zend_function_entry *funcs)
4138
-{
4139
- zend_function_entry *pf = funcs;
4140
- char *pname;
4141
-
4142
- while(funcs->fname) {
4143
- if( strcmp(funcs->fname,"__construct") == 0 ) {
4144
- pname=strdup(class_name);
4145
- } else {
4146
- pname=strdup(funcs->fname);
4147
- }
4148
- funcs->fname=pname;
4149
- while(*pname) { *pname=tolower(*pname);pname++;}
4150
- funcs++;
4151
4152
-}
4153
-#endif
4154
4155
/* custom error handler propagates ming errors up to php */
4156
static void php_ming_error(const char *msg, ...)
4157
{
0 commit comments