Lines Matching refs:bugs
96 {$bugs = unserialize(@file_get_contents($pfile));}
98 {$bugs = array();}
127 $bug_id=count($bugs);
128 foreach ($bugs as $value)
130 $bugs[$bug_id]['id'] = $bug_id;
131 $bugs[$bug_id]['version'] = htmlspecialchars(stripslashes($_REQUEST['version']));
132 $bugs[$bug_id]['severity'] = htmlspecialchars(stripslashes($_REQUEST['severity']));
133 $bugs[$bug_id]['status'] = "New";
134 $bugs[$bug_id]['description'] = htmlspecialchars(stripslashes($_REQUEST['description']));
135 $bugs[$bug_id]['resolution'] = '';
136 $bugs[$bug_id]['author'] = htmlspecialchars(stripslashes($_REQUEST['email']));
139 fwrite($fh, serialize($bugs));
142 …this->_emailForNewBug($bug_id,$data['project'],$bugs[$bug_id]['version'],$bugs[$bug_id]['severity'…
156 $Generated_Table = $this->_table_render($bugs,$data);
163 $Generated_Table = $this->_count_render($bugs);
174 function _count_render($bugs) argument
177 foreach ($bugs as $bug)
304 function _table_render($bugs,$data) argument
313 foreach ($bugs as $bug)