diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-01 10:52:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-01 10:52:01 +0000 |
commit | d216096ede8bad94254a32435f828c915d632fb2 (patch) | |
tree | 824487e806469e3fdca8171c55ea181d329e3705 /includes/node.inc | |
parent | ce5a005d9e9fd47dfb27aec89ed00aaa95c3ce3a (diff) | |
download | brdo-d216096ede8bad94254a32435f828c915d632fb2.tar.gz brdo-d216096ede8bad94254a32435f828c915d632fb2.tar.bz2 |
- simplified some of the node stuff:
stories can no longer be scheduled -> this functionality will be made
generic for all nodes
Diffstat (limited to 'includes/node.inc')
-rw-r--r-- | includes/node.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/node.inc b/includes/node.inc index 468b8f2e1..8afed3ecc 100644 --- a/includes/node.inc +++ b/includes/node.inc @@ -1,6 +1,6 @@ <?php -$status = array(dumped => 0, expired => 1, queued => 2, posted => 3, scheduled => 4); +$status = array(dumped => 0, expired => 1, queued => 2, posted => 3); function _node_get($field, $value) { $result = db_query("SELECT lid, type FROM node WHERE $field = '$value'"); |