Menu

#38 email.issues.php update

open
nobody
Bug Fix (13)
5
2005-02-14
2005-02-14
gillesn
No

I propose an update on email.issue.php file :

One query tried to get datas from unknow field (etype
and assigned_to), on second query, the fetch_all
parameter "array" was missing :

diff email.issues.php email.issues.php.orig :

< $sql = "SELECT severity,opened_by ";
---
> $sql = "SELECT
etype,severity,assigned_to,opened_by ";
27,28c26,27
< list($severity,$opened_by) = $dbi->fetch_row($sql);
---
> list($etype,$severity,$assigned_to,$opened_by) =
$dbi->fetch_row($sql);
>
42c42
< $events = $dbi->fetch_all($sql,"array");
---
> $events = $dbi->fetch_all($sql);

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.