Skip to content

Commit ea6747a

Browse files
committed
[ci skip] Fix comment
1 parent 5bd739a commit ea6747a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

main/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ static PHP_INI_MH(OnUpdateErrorLog)
639639
/* {{{ PHP_INI_MH */
640640
static PHP_INI_MH(OnUpdateMailLog)
641641
{
642-
/* Only do the safemode/open_basedir check at runtime */
642+
/* Only do the open_basedir check at runtime */
643643
if ((stage == PHP_INI_STAGE_RUNTIME || stage == PHP_INI_STAGE_HTACCESS) && new_value && ZSTR_LEN(new_value) > 0) {
644644
if (PG(open_basedir) && php_check_open_basedir(ZSTR_VAL(new_value))) {
645645
return FAILURE;

main/php_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* edit configure.ac to change version number */
33
#define PHP_MAJOR_VERSION 8
44
#define PHP_MINOR_VERSION 3
5-
#define PHP_RELEASE_VERSION 26
5+
#define PHP_RELEASE_VERSION 24
66
#define PHP_EXTRA_VERSION "-dev"
7-
#define PHP_VERSION "8.3.26-dev"
8-
#define PHP_VERSION_ID 80326
7+
#define PHP_VERSION "8.3.24-dev"
8+
#define PHP_VERSION_ID 80324

0 commit comments

Comments
 (0)