summaryrefslogtreecommitdiff
path: root/ext/standard
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-10-29 09:14:55 +0000
committerThies C. Arntzen <thies@php.net>2000-10-29 09:14:55 +0000
commit825457ae64db20d0a35a272465e9a1dc1cf64e61 (patch)
tree11a3e17978b78b51fda5807eb5db8e3b847f3e3e /ext/standard
parentfc4b704fcaecc12dec7a178502670903d8a89bfb (diff)
downloadphp-git-825457ae64db20d0a35a272465e9a1dc1cf64e61.tar.gz
update my email.
Diffstat (limited to 'ext/standard')
-rw-r--r--ext/standard/assert.c2
-rw-r--r--ext/standard/dir.c2
-rw-r--r--ext/standard/file.c2
-rw-r--r--ext/standard/filestat.c2
-rw-r--r--ext/standard/iptc.c2
-rw-r--r--ext/standard/math.c2
-rw-r--r--ext/standard/metaphone.c2
-rw-r--r--ext/standard/output.c2
-rw-r--r--ext/standard/php_assert.h2
-rw-r--r--ext/standard/php_dir.h2
-rw-r--r--ext/standard/php_iptc.h2
-rw-r--r--ext/standard/php_metaphone.h2
-rw-r--r--ext/standard/var.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/ext/standard/assert.c b/ext/standard/assert.c
index ce68c89360..71194cd223 100644
--- a/ext/standard/assert.c
+++ b/ext/standard/assert.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Author: Thies C. Arntzen (thies@digicol.de) |
+ | Author: Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/dir.c b/ext/standard/dir.c
index 0595238f3c..0ad886cb4f 100644
--- a/ext/standard/dir.c
+++ b/ext/standard/dir.c
@@ -13,7 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: |
- | PHP 4.0 patches by Thies C. Arntzen (thies@digicol.de) |
+ | PHP 4.0 patches by Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/file.c b/ext/standard/file.c
index c85ba328b4..82f049f75d 100644
--- a/ext/standard/file.c
+++ b/ext/standard/file.c
@@ -16,7 +16,7 @@
| Stig Bakken <ssb@fast.no> |
| Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
- | PHP 4.0 patches by Thies C. Arntzen (thies@digicol.de) |
+ | PHP 4.0 patches by Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/filestat.c b/ext/standard/filestat.c
index 784ef3079d..71b88c8e9b 100644
--- a/ext/standard/filestat.c
+++ b/ext/standard/filestat.c
@@ -180,7 +180,7 @@ PHP_FUNCTION(diskfreespace)
&TotalNumberOfBytes,
&TotalNumberOfFreeBytes) == 0) RETURN_FALSE;
- /* i know - this is ugly, but i works (thies@digicol.de) */
+ /* i know - this is ugly, but i works (thies@thieso.net) */
bytesfree = FreeBytesAvailableToCaller.HighPart *
(double) (((unsigned long)1) << 31) * 2.0 +
FreeBytesAvailableToCaller.LowPart;
diff --git a/ext/standard/iptc.c b/ext/standard/iptc.c
index 248eafd619..0fdab46b2c 100644
--- a/ext/standard/iptc.c
+++ b/ext/standard/iptc.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: Thies C. Arntzen (thies@digicol.de) |
+ | Authors: Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/math.c b/ext/standard/math.c
index e6ee1fd03d..5b26d7a3df 100644
--- a/ext/standard/math.c
+++ b/ext/standard/math.c
@@ -15,7 +15,7 @@
| Authors: Jim Winstead (jimw@php.net) |
| Stig Sæther Bakken <ssb@guardian.no> |
| Zeev Suraski <zeev@zend.com> |
- | PHP 4.0 patches by Thies C. Arntzen (thies@digicol.de) |
+ | PHP 4.0 patches by Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/metaphone.c b/ext/standard/metaphone.c
index f548fbd67e..eaf0d1d10f 100644
--- a/ext/standard/metaphone.c
+++ b/ext/standard/metaphone.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: Thies C. Arntzen <thies@digicol.de> |
+ | Authors: Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/output.c b/ext/standard/output.c
index 2b14bd7f21..bba0c1b6cc 100644
--- a/ext/standard/output.c
+++ b/ext/standard/output.c
@@ -13,7 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Zeev Suraski <zeev@zend.com> |
- | Thies C. Arntzen <thies@digicol.de> |
+ | Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/php_assert.h b/ext/standard/php_assert.h
index 4a534d5369..1fa46d7242 100644
--- a/ext/standard/php_assert.h
+++ b/ext/standard/php_assert.h
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Author: Thies C. Arntzen (thies@digicol.de) |
+ | Author: Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/php_dir.h b/ext/standard/php_dir.h
index 6c6593b067..2f416fc5f4 100644
--- a/ext/standard/php_dir.h
+++ b/ext/standard/php_dir.h
@@ -13,7 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: |
- | PHP 4.0 patches by Thies C. Arntzen (thies@digicol.de) |
+ | PHP 4.0 patches by Thies C. Arntzen (thies@thieso.net) |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/php_iptc.h b/ext/standard/php_iptc.h
index 3baef3e298..27c9372aa0 100644
--- a/ext/standard/php_iptc.h
+++ b/ext/standard/php_iptc.h
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: Thies C. Arntzen <thies@digicol.de> |
+ | Authors: Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/php_metaphone.h b/ext/standard/php_metaphone.h
index 348988c288..364815d90f 100644
--- a/ext/standard/php_metaphone.h
+++ b/ext/standard/php_metaphone.h
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: Thies C. Arntzen <thies@digicol.de> |
+ | Authors: Thies C. Arntzen <thies@thieso.net> |
+----------------------------------------------------------------------+
*/
diff --git a/ext/standard/var.c b/ext/standard/var.c
index c9f7a3601b..04b7d5ba8e 100644
--- a/ext/standard/var.c
+++ b/ext/standard/var.c
@@ -13,7 +13,7 @@
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Jani Lehtimäki <jkl@njet.net> |
- | Thies C. Arntzen <thies@digicol.de> |
+ | Thies C. Arntzen <thies@thieso.net> |
| Sascha Schumann <sascha@schumann.cx> |
+----------------------------------------------------------------------+
*/