diff options
author | Stig Bakken <ssb@php.net> | 2001-09-04 03:34:59 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2001-09-04 03:34:59 +0000 |
commit | f12896d23b71cc6fc366427a44e68700206378e8 (patch) | |
tree | dbf15a4583e6508ce3619d6521213e95db605f7e | |
parent | 04439c305bc2c64a135e6e4d1aebb2d1f6dfff76 (diff) | |
download | php-git-f12896d23b71cc6fc366427a44e68700206378e8.tar.gz |
* hopefully the only changes required for the initials->user rename
-rw-r--r-- | pear/PEAR/Common.php | 2 | ||||
-rw-r--r-- | pear/PEAR/WebInstaller.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pear/PEAR/Common.php b/pear/PEAR/Common.php index 584eb42d2b..d6b02cb6b4 100644 --- a/pear/PEAR/Common.php +++ b/pear/PEAR/Common.php @@ -260,7 +260,7 @@ class PEAR_Common extends PEAR case 'SUMMARY': $this->pkginfo['summary'] .= $data; break; - case 'INITIALS': + case 'USER': $this->current_maintainer['handle'] .= $data; break; case 'EMAIL': diff --git a/pear/PEAR/WebInstaller.php b/pear/PEAR/WebInstaller.php index 4932610532..14e48855d6 100644 --- a/pear/PEAR/WebInstaller.php +++ b/pear/PEAR/WebInstaller.php @@ -455,7 +455,7 @@ class PEAR_WebInstaller extends PEAR case "SUMMARY": $this->pkginfo["summary"] .= $data; break; - case "INITIALS": + case "USER": $this->pkginfo["maintainer_handle"] .= $data; break; case "EMAIL": |