pajoye Mon Feb 19 10:37:53 2007 UTC
Modified files:
/peclweb/public_html/bugs/include functions.inc
Log:
- remove debug code, not required anymore.
http://cvs.php.net/viewvc.cgi/peclweb/public_html/bugs/include/functions.inc?r1=1.26&r2=1.27&diff_format=u
Index: peclweb/public_html/bugs/include/functions.inc
diff -u peclweb/public_html/bugs/include/functions.inc:1.26
peclweb/public_html/bugs/include/functions.inc:1.27
--- peclweb/public_html/bugs/include/functions.inc:1.26 Fri Feb 16 14:42:08 2007
+++ peclweb/public_html/bugs/include/functions.inc Mon Feb 19 10:37:52 2007
@@ -15,7 +15,7 @@
* @package Bugs
* @copyright Copyright (c) 1997-2004 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License
- * @version $Id: functions.inc,v 1.26 2007/02/16 14:42:08 pajoye Exp $
+ * @version $Id: functions.inc,v 1.27 2007/02/19 10:37:52 pajoye Exp $
*/
@@ -703,15 +703,6 @@
/* Default addresses */
list($mailto,$mailfrom, $Bcc) =
get_package_mail(oneof($in['package_name'],$bug['package_name']), $id);
- if ($user == 'pajoye') {
- echo "<pre>";
- print_r($mailfrom);
- print_r("\n");
- print_r($Bcc);
- print_r("\n");
- print_r($mailto);
- echo "</pre>";
- }
/* Get rid of slashes in bug status */
$bug['status'] = rinse($bug['status']);
@@ -1067,11 +1058,6 @@
}
$maintainers = package::info($package_name, 'authors');
- if ($user == 'pajoye') {
- echo "<pre>";
- print_r($maintainers);
- echo "</pre>";
- }
$to = array();
foreach ($maintainers as $data) {
if (!$data['active']) {
|