Skip to content

Commit

Permalink
suppress error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
bretdavidson committed Jul 30, 2013
1 parent 1cf15c8 commit c741e04
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions analysis/lib/php/NightlyData.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

require_once '../../lib/php/ServerIO.php';

// Suppress Error Reporting
error_reporting(0);
ini_set('display_errors', 0);

/**
* Class to create an hourly report on previous
* day's counts for all initiatives.
Expand Down
4 changes: 4 additions & 0 deletions analysis/lib/php/SessionsData.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
require_once '../../lib/php/Gump.php';
require_once '../../lib/php/SumaGump.php';

// Suppress Error Reporting
error_reporting(0);
ini_set('display_errors', 0);

/**
* Class to create an hourly report on previous
* day's counts for all initiatives.
Expand Down
4 changes: 4 additions & 0 deletions analysis/lib/php/TimeSeriesData.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
require_once '../../lib/php/Gump.php';
require_once '../../lib/php/SumaGump.php';

// Suppress Error Reporting
error_reporting(0);
ini_set('display_errors', 0);

/**
* TimeSeriesData - Class to process data for display in a time series.
*
Expand Down

0 comments on commit c741e04

Please sign in to comment.