cellog Fri May 25 19:56:10 2007 UTC
Modified files:
/pearweb/public_html/bugs bug.php
Log:
apply same fix for fix Bug #11146
to bug.php to enable debugging on devbox
http://cvs.php.net/viewvc.cgi/pearweb/public_html/bugs/bug.php?r1=1.164&r2=1.165&diff_format=u
Index: pearweb/public_html/bugs/bug.php
diff -u pearweb/public_html/bugs/bug.php:1.164
pearweb/public_html/bugs/bug.php:1.165
--- pearweb/public_html/bugs/bug.php:1.164 Fri May 25 19:48:38 2007
+++ pearweb/public_html/bugs/bug.php Fri May 25 19:56:10 2007
@@ -15,7 +15,7 @@
* @package Bugs
* @copyright Copyright (c) 1997-2005 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License
- * @version $Id: bug.php,v 1.164 2007/05/25 19:48:38 cellog Exp $
+ * @version $Id: bug.php,v 1.165 2007/05/25 19:56:10 cellog Exp $
*/
/*
@@ -303,19 +303,17 @@
break;
}
- if (!DEVBOX) {
- try {
- $buggie->sendEmail();
- } catch (Exception $e) {
- $errors[] = 'Critical internal error: could not send' .
- ' email to your address ' . $_POST['in']['email'] .
- ', please write a mail message to the
<i>pear-dev</i>' .
- 'mailing list and report this problem with
details.' .
- ' We apologize for the problem, your report will
help' .
- ' us to fix it for future users: ' .
$e->getMessage();
- response_header('Add Comment - Problems');
- break;
- }
+ try {
+ $buggie->sendEmail();
+ } catch (Exception $e) {
+ $errors[] = 'Critical internal error: could not send' .
+ ' email to your address ' . $_POST['in']['email'] .
+ ', please write a mail message to the <i>pear-dev</i>'
.
+ 'mailing list and report this problem with details.' .
+ ' We apologize for the problem, your report will
help' .
+ ' us to fix it for future users: ' . $e->getMessage();
+ response_header('Add Comment - Problems');
+ break;
}
$_POST['in']['handle'] =
$_POST['in']['name'] = substr('#' . $salt, 0, 19);
--
PEAR CVS Mailing List (http://pear.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|