I resolved the error to removed the reportTable SOLVED

I added to validation in reportTable Old
This commit is contained in:
Brayan Osmar Pereyra Suxo
2013-02-07 10:06:26 -04:00
parent 511eeb7483
commit fcaec9eb1c

View File

@@ -362,7 +362,12 @@ class pmTablesProxy extends HttpProxyController
$table = $at->load( $row->id );
if (! isset( $table )) {
throw new Exception( "Table does not exist... skipped!\n" );
require_once 'classes/model/ReportTable.php';
$rtOld = new ReportTable();
$existReportTableOld = $rtOld->load( $row->id );
if (count($existReportTableOld) == 0) {
throw new Exception( "Table does not exist... skipped!\n" );
}
}
if ($row->type == 'CLASSIC') {