A couple of fixes.

This commit is contained in:
Andrey Hristov 1999-05-10 20:41:42 +00:00
parent 928e322038
commit ea0f19850e
2 changed files with 3 additions and 1 deletions

View File

@ -436,7 +436,9 @@ any .htaccess restrictions anywhere on your site you can leave doc_root undefine
php3_header(); /* Make sure headers have been sent */
php_request_shutdown((void *) 0);
php_module_shutdown();
#ifdef ZTS
tsrm_shutdown();
#endif
return SUCCESS;
}

View File

@ -470,7 +470,7 @@ static void php3_timeout(int dummy)
{
PLS_FETCH();
php3_error(E_ERROR, "Maximum execution time of %s seconds exceeded", INI_STRING("max_execution_time"));
php3_error(E_ERROR, "Maximum execution time of %s seconds exceeded", INI_STR("max_execution_time"));
}
#endif