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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user