Update of /cvsroot/webnotes/webnotes/core
In directory usw-pr-cvs1:/tmp/cvs-serv11346
Modified Files:
html_api.php
Log Message:
Didn't add @ before all the header lines. Fixed
Index: html_api.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/core/html_api.php,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- html_api.php 1 Oct 2002 12:30:09 -0000 1.16
+++ html_api.php 2 Oct 2002 06:03:58 -0000 1.17
@@ -49,9 +49,9 @@
@header( 'Expires: Fri, 01 Jan 1999 00:00:00 GMT' );
@header( 'Cache-control: no-cache, no-cache="Set-Cookie", private' );
if ( ON == $t_use_iis ) {
- header( "Refresh: 0;url=$p_url" );
+ @header( "Refresh: 0;url=$p_url" );
} else {
- header( "Location: $p_url" );
+ @header( "Location: $p_url" );
}
die; # additional output can cause problems so let's just stop output here
}
@@ -178,4 +178,4 @@
}
}
### --------------------
-?>
\ No newline at end of file
+?>
|