- Patch #132789 by vdessel: fixed undefined variable.

6.x
Dries Buytaert 2007-04-02 15:15:39 +00:00
parent 5229b864fb
commit 60cb22740b
1 changed files with 1 additions and 2 deletions

View File

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