summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php4.c
diff options
context:
space:
mode:
authorShane Caraveo <shane@php.net>2000-04-30 04:21:52 +0000
committerShane Caraveo <shane@php.net>2000-04-30 04:21:52 +0000
commitc7e2d8ef35df1327581e9eb10632a20b2f062c97 (patch)
tree49a2e6ab27071597f82f0ca2a464db4ad0545fb2 /sapi/apache/mod_php4.c
parent8d3ce80f48fa7f9e7b15d6e4521c73db622bce67 (diff)
downloadphp-git-c7e2d8ef35df1327581e9eb10632a20b2f062c97.tar.gz
sorry, do comments right
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r--sapi/apache/mod_php4.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c
index a43ad6d0d7..3b7b54c64d 100644
--- a/sapi/apache/mod_php4.c
+++ b/sapi/apache/mod_php4.c
@@ -239,10 +239,10 @@ static void sapi_apache_register_server_variables(zval *track_vars_array ELS_DC
array_header *arr = table_elts(((request_rec *) SG(server_context))->subprocess_env);
table_entry *elts = (table_entry *) arr->elts;
char *script_filename=NULL;
- // Theses are already in parameters?
-// ELS_FETCH();
-// PLS_FETCH();
-
+/* Theses are already in parameters?
+ ELS_FETCH();
+ PLS_FETCH();
+*/
for (i = 0; i < arr->nelts; i++) {
char *val;
@@ -268,11 +268,11 @@ static int
php_apache_startup(sapi_module_struct *sapi_module)
{
#ifdef PHP_WIN32
- // this is needed because apache reloads this dll twice due
+ /* this is needed because apache reloads this dll twice due
// to a colision. A better way to do this is to define the load
// address for the dll, but am not sure what it should be.
// this is just a quick hack to get it working.
-
+ */
static int php_apache_started=0;
static int apache_startup_success = FAILURE;
if (php_apache_started>0) return apache_startup_success;