1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Deprecated Function cleanup and PHP Notice removal.

This commit is contained in:
Cameron
2016-02-15 00:56:08 -08:00
parent cb75547c27
commit 2c50a06517
24 changed files with 85 additions and 80 deletions

View File

@@ -336,14 +336,14 @@ class _system_cron
$table = $tab[0];
$text = "";
$sql->db_Select_gen("SHOW CREATE TABLE `".$table."`");
$sql->gen("SHOW CREATE TABLE `".$table."`");
$row2 = $sql->db_Fetch();
$text .= $row2['Create Table'];
$text .= ";\n\n";
ob_end_clean(); // prevent memory exhaustian
$count = $sql->db_Select_gen("SELECT * FROM `".$table."`");
$count = $sql->gen("SELECT * FROM `".$table."`");
$data_array = "";
while($row = $sql->db_Fetch())