summaryrefslogtreecommitdiff
path: root/modules/book
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-04-28 19:36:01 +0000
committerDries Buytaert <dries@buytaert.net>2010-04-28 19:36:01 +0000
commit2c83cf581e2763ed694e3fb35dbcb15de7477dda (patch)
tree8741f1196b6984d8cb70a9ee1cc8430a9cafb288 /modules/book
parent688037d7e1f11c5c827bce829ca3f09ccb3a0180 (diff)
downloadbrdo-2c83cf581e2763ed694e3fb35dbcb15de7477dda.tar.gz
brdo-2c83cf581e2763ed694e3fb35dbcb15de7477dda.tar.bz2
- Patch #783584 by Pasqualle: fixed invalid HTML.
Diffstat (limited to 'modules/book')
-rw-r--r--modules/book/book.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/book/book.admin.inc b/modules/book/book.admin.inc
index 7a319430a..02a45b24c 100644
--- a/modules/book/book.admin.inc
+++ b/modules/book/book.admin.inc
@@ -246,8 +246,8 @@ function theme_book_admin_table($variables) {
drupal_render($form[$key]['weight']),
drupal_render($form[$key]['plid']) . drupal_render($form[$key]['mlid']),
l(t('view'), $href),
- $access ? l(t('edit'), 'node/' . $nid . '/edit', array('query' => $destination)) : '&nbsp',
- $access ? l(t('delete'), 'node/' . $nid . '/delete', array('query' => $destination) ) : '&nbsp',
+ $access ? l(t('edit'), 'node/' . $nid . '/edit', array('query' => $destination)) : '&nbsp;',
+ $access ? l(t('delete'), 'node/' . $nid . '/delete', array('query' => $destination) ) : '&nbsp;',
);
$row = array('data' => $data);
if (isset($form[$key]['#attributes'])) {