1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-19 04:41:53 +02:00

Code cleanup and optimization

This commit is contained in:
Cameron
2020-12-14 16:21:48 -08:00
parent c258b856f2
commit 44e260b121
81 changed files with 747 additions and 722 deletions

View File

@@ -1672,7 +1672,7 @@ class e107MailManager
*/
public function getNextEmailStatus()
{
$result = $this->db->db_Fetch();
$result = $this->db->fetch();
if (is_array($result)) { return $this->dbToMail($result); }
return FALSE;
}
@@ -1742,7 +1742,7 @@ class e107MailManager
*/
public function getNextTargetStatus()
{
$result = $this->db2->db_Fetch();
$result = $this->db2->fetch();
if (is_array($result)) { return $this->dbToTarget($result); }
return FALSE;
}