cvs: docweb /include/rfc rfc.php
[email protected] ("Vincent Gevers")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvsvincent1122716463@cvsserver> |
vincent Sat Jul 30 05:41:03 2005 EDT
Modified files:
/docweb/include/rfc rfc.php
Log:
copy and paste error, by me :(
http://cvs.php.net/diff.php/docweb/include/rfc/rfc.php?r1=1.16&r2=1.17&ty=u
Index: docweb/include/rfc/rfc.php
diff -u docweb/include/rfc/rfc.php:1.16 docweb/include/rfc/rfc.php:1.17
--- docweb/include/rfc/rfc.php:1.16 Sat Jul 30 05:37:34 2005
+++ docweb/include/rfc/rfc.php Sat Jul 30 05:41:02 2005
@@ -24,7 +24,7 @@
* @author Daniel Convissor <[email protected]>
* @copyright Copyright (c) 1997-2004 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License
- * @version $Id: rfc.php,v 1.16 2005/07/30 09:37:34 vincent Exp $
+ * @version $Id: rfc.php,v 1.17 2005/07/30 09:41:02 vincent Exp $
*/
$path = realpath(dirname(__FILE__));
@@ -773,8 +773,10 @@
$prefix = "";
}
$prefix = PROPOSAL_EMAIL_PREFIX . $prefix . " ";
- $actorinfo = array('name' => user_name($user_handle), 'email' => $this->user_handle.'@php.net', 'handle' => $user_handle); // !!!
- $ownerinfo = array('name' => user_name($this->user_handle), 'email' => $this->user_handle.'@php.net', 'handle' => $this->user_handle); // !!!
+ $actorinfo = array('name' => user_name($user_handle),
+ 'email' => $user_handle.'@php.net', 'handle' => $user_handle); // !!!
+ $ownerinfo = array('name' => user_name($this->user_handle),
+ 'email' => $this->user_handle.'@php.net', 'handle' => $this->user_handle); // !!!
$this->getVotes($dbh);
$vote = @$this->votes[$user_handle];