diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 22:49:14 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2001-04-21 22:49:14 +0000 |
commit | 839cb3f4cb204b63365ff88a9f73a8513fd66c28 (patch) | |
tree | 4d31add1fcbb2f0f9a26d34c87e8a7cd7542a711 | |
parent | 2e25565b86fc98279f4930bbb9cd322f4577a0c9 (diff) | |
download | brdo-839cb3f4cb204b63365ff88a9f73a8513fd66c28.tar.gz brdo-839cb3f4cb204b63365ff88a9f73a8513fd66c28.tar.bz2 |
- Oops: left in a debug-statement
-rw-r--r-- | includes/node.inc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/includes/node.inc b/includes/node.inc index 853e3d8d2..37e46f0b5 100644 --- a/includes/node.inc +++ b/includes/node.inc @@ -182,7 +182,6 @@ function node_control($node) { else $choices = array("node.php?id=$node->nid" => t("view node"), "node.php?op=history&id=$node->nid" => t("view history")); - $output .= $REQUEST_URI; $output .= "<FORM METHOD=\"get\" ACTION=\"\">\n"; foreach ($choices as $key => $value) $options .= "<OPTION VALUE=\"$key\"". (strstr($REQUEST_URI,"/$key") ? " SELECTED" : "") .">". check_select($value) ."</OPTION>\n"; $output .= " <SELECT NAME=\"op\" ONCHANGE=\"visit(this.options[this.selectedIndex].value)\">$options</SELECT>\n"; |