- changed $this->timestamp = $node[attributes]; to
$this->attributes = $node[attributes]; Makes more sense this way :-)3-00
parent
be7077be33
commit
3b35b43576
|
@ -5,7 +5,7 @@ class Node {
|
|||
global $user;
|
||||
$this->userid = $node[userid] ? $node[userid] : $user->userid;
|
||||
$this->title = $node[title];
|
||||
$this->timestamp = $node[attributes];
|
||||
$this->attributes = $node[attributes];
|
||||
$this->timestamp = $node[timestamp] ? $node[timestamp] : time();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ class Node {
|
|||
global $user;
|
||||
$this->userid = $node[userid] ? $node[userid] : $user->userid;
|
||||
$this->title = $node[title];
|
||||
$this->timestamp = $node[attributes];
|
||||
$this->attributes = $node[attributes];
|
||||
$this->timestamp = $node[timestamp] ? $node[timestamp] : time();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue