summaryrefslogtreecommitdiff
path: root/ext/standard/pageinfo.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Make php_startpage and php_getlastmod available from shared extensionsFrank M. Kromann2001-12-031-4/+10
|
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* More TSRMLS_FETCH work. Got it under 400 now.Zeev Suraski2001-07-311-1/+1
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-11/+7
|
* Add getmygid() and safe_mode_gid ini directive to allow safe mode to doRasmus Lerdorf2001-07-091-1/+25
| | | | | | | a gid check instead of a uid check. @ - Add getmygid() and safe_mode_gid ini directive to allow safe mode to do @ a gid check instead of a uid check. (James E. Flemer, Rasmus)
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+8
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+8
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Fix possible crash when stat information is not availableStanislav Malyshev2000-08-081-3/+5
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-1/+2
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-2/+2
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-2/+2
|
* More cleanup!Zeev Suraski2000-02-101-39/+11
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* More php3_ annihilationZeev Suraski1999-12-181-4/+4
|
* More php3_ annihilationZeev Suraski1999-12-171-2/+2
|
* @- Made pageinfo.c thread-safe (Sascha)Sascha Schumann1999-12-121-17/+21
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-1/+1
| | | | | php3_compat.h)
* License updateZeev Suraski1999-07-161-20/+9
|
* Win32/general patchesZeev Suraski1999-06-261-0/+2
|
* * Get rid of another request_info element (filename)Zeev Suraski1999-06-261-1/+1
| | | | | * CGI through Apache should work now
* conv_proto *.[ch]Sascha Schumann1999-05-161-4/+4
|
* * Get the Apache module to compile againZeev Suraski1999-04-261-3/+9
| | | | | | * Get rid of php3_rqst, use SG(server_context) instead (there's still Apache-specific code, but it nuked a global)
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-21/+13
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+1
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+159
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.