Bug 389128 – Reporter service should support non-soap based reports (part 2) r=morgamic

git-svn-id: svn://10.0.0.236/trunk@238364 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
robert%accettura.com 2007-10-31 02:23:18 +00:00
parent 6b56bc0c92
commit e52173fac5
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ RewriteEngine On
RewriteBase /
RewriteRule ^service(/)?([A-Za-z0-9.-]+)? service.php?v=$2 [QSA]
RewriteRule ^service(/)?([A-Za-z0-9.-]+)?$ service.php?v=$2 [QSA]
RewriteRule ^app/query(/)?(.*)$ query.php$2 [QSA,L]
RewriteRule ^app/report/screenshot(/)?(.*)$ screenshot.php$2 [QSA,L]
RewriteRule ^app/report(/)?(.*)$ report.php$2 [QSA,L]

View File

@ -41,7 +41,7 @@ require_once($config['base_path'].'/includes/iolib.inc.php');
require_once($config['base_path'].'/includes/db.inc.php');
// Turn off Error Reporting because it breaks xml formatting and causes errors
error_reporting(1);
error_reporting(0);
// If debugging is enabled, we turn it on (mostly a negative thing)
if($config['debug']){