- changed $this->timestamp = $node[attributes]; to

$this->attributes = $node[attributes];
  Makes more sense this way :-)
3-00
Kjartan Mannes 2001-06-12 11:50:38 +00:00
parent be7077be33
commit 3b35b43576
2 changed files with 2 additions and 2 deletions

View File

@ -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();
}
}

View File

@ -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();
}
}