blob: 90a095c0adb44d3d57d08274fe08e25628e9cfb6 (
plain) (
tree)
|
|
<?php
require_once "class/object.class.php";
/*
* Pad issues
*/
class Issue extends Object
{
/*
* Constructor
*/
function __construct($guid = null)
{
$cols = array(
"guid",
"number",
"assignee",
"unread",
"desc"
);
parent::__construct("issue", $cols);
$this->loadObj($guid);
}
}
?>
|