summaryrefslogtreecommitdiff
path: root/modules/node/node.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-04-02 15:15:39 +0000
committerDries Buytaert <dries@buytaert.net>2007-04-02 15:15:39 +0000
commit60cb22740b65e54fd5bd1090dca9bd2857c2741c (patch)
tree5db04d4ab3b66e2d1f045c9415008fcf20b97526 /modules/node/node.module
parent5229b864fb41578a62c5e4a006b84505c210f043 (diff)
downloadbrdo-60cb22740b65e54fd5bd1090dca9bd2857c2741c.tar.gz
brdo-60cb22740b65e54fd5bd1090dca9bd2857c2741c.tar.bz2
- Patch #132789 by vdessel: fixed undefined variable.
Diffstat (limited to 'modules/node/node.module')
-rw-r--r--modules/node/node.module3
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);
}
/**