diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-02 15:15:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-02 15:15:39 +0000 |
commit | 60cb22740b65e54fd5bd1090dca9bd2857c2741c (patch) | |
tree | 5db04d4ab3b66e2d1f045c9415008fcf20b97526 | |
parent | 5229b864fb41578a62c5e4a006b84505c210f043 (diff) | |
download | brdo-60cb22740b65e54fd5bd1090dca9bd2857c2741c.tar.gz brdo-60cb22740b65e54fd5bd1090dca9bd2857c2741c.tar.bz2 |
- Patch #132789 by vdessel: fixed undefined variable.
-rw-r--r-- | modules/node/node.module | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/node/node.module b/modules/node/node.module index a7b052014..88284bb6d 100644 --- a/modules/node/node.module +++ b/modules/node/node.module @@ -1646,9 +1646,8 @@ function node_revision_overview($node) { } $rows[] = array_merge($row, $operations); } - $output .= theme('table', $header, $rows); - return $output; + return theme('table', $header, $rows); } /** |