cvs: docweb /include/rfc rfc.php
[email protected] ("Vincent Gevers")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvsvincent1122716257@cvsserver> |
vincent Sat Jul 30 05:37:37 2005 EDT
Modified files:
/docweb/include/rfc rfc.php
Log:
real user info works better
http://cvs.php.net/diff.php/docweb/include/rfc/rfc.php?r1=1.15&r2=1.16&ty=u
Index: docweb/include/rfc/rfc.php
diff -u docweb/include/rfc/rfc.php:1.15 docweb/include/rfc/rfc.php:1.16
--- docweb/include/rfc/rfc.php:1.15 Fri Jul 29 15:31:13 2005
+++ docweb/include/rfc/rfc.php Sat Jul 30 05:37:34 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.15 2005/07/29 19:31:13 nlopess Exp $
+ * @version $Id: rfc.php,v 1.16 2005/07/30 09:37:34 vincent Exp $
*/
$path = realpath(dirname(__FILE__));
@@ -773,8 +773,8 @@
$prefix = "";
}
$prefix = PROPOSAL_EMAIL_PREFIX . $prefix . " ";
- $actorinfo = array('name' => $user_handle, 'email' => '[email protected]', 'handle' => $user_handle); // !!!
- $ownerinfo = array('name' => $this->user_handle, 'email' => '[email protected]', 'handle' => $this->user_handle); // !!!
+ $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); // !!!
$this->getVotes($dbh);
$vote = @$this->votes[$user_handle];