From d1a07a2e8f21e402c85799215f37bd7f3cb685f1 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 31 Mar 2001 14:58:37 +0000 Subject: - fixed "you-have-to-logout-and-login-before-permissions-change" bug (reported by UnConeD) - added "add node" link to book selection box and made it display the current location - removed tabs and whitespaces from themes - done automatically --- modules/account.module | 12 ++++++------ modules/book.module | 2 +- modules/book/book.module | 2 +- modules/moderation.module | 2 -- 4 files changed, 8 insertions(+), 10 deletions(-) (limited to 'modules') diff --git a/modules/account.module b/modules/account.module index 236993140..71671cbd3 100644 --- a/modules/account.module +++ b/modules/account.module @@ -116,12 +116,12 @@ function account_edit($name) { $output .= "Username:
". check_output($account->userid) ."

\n"; $output .= "Status:

\n"; $output .= "Administrator access:

\n"; - $output .= "Real name:
name\">

\n"; - $output .= "Real e-mail address:
real_email\">

\n"; - $output .= "Fake e-mail address:
fake_email\">

\n"; - $output .= "URL of homepage:
url\">

\n"; - $output .= "Bio information:

\n"; - $output .= "Signature:

\n"; + $output .= "Real name:
name). "\">

\n"; + $output .= "Real e-mail address:
real_email) ."\">

\n"; + $output .= "Fake e-mail address:
fake_email) ."\">

\n"; + $output .= "URL of homepage:
url) ."\">

\n"; + $output .= "Bio information:

\n"; + $output .= "Signature:

\n"; $output .= "userid\">\n"; $output .= "\n"; $output .= "\n"; diff --git a/modules/book.module b/modules/book.module index 8009ae27e..59c1b35d4 100644 --- a/modules/book.module +++ b/modules/book.module @@ -80,7 +80,7 @@ function book_toc($parent = 0, $offset = 0, $toc = array()) { $result = db_query("SELECT n.*, b.* FROM node n LEFT JOIN book b ON n.nid = b.nid AND n.lid = b.lid WHERE n.type = 'book' AND n.status = '$status[posted]' AND b.parent = '$parent' ORDER BY b.weight"); while ($node = db_fetch_object($result)) { $toc[$node->nid] = ($offset ? $offset : "") ."". ++$number .". $node->title"; - $toc = book_toc($node->nid, ($offset ? "$offset." : "") ."$number.", $toc); + $toc = book_toc($node->nid, ($offset ? $offset : "") ."$number.", $toc); } return $toc; } diff --git a/modules/book/book.module b/modules/book/book.module index 8009ae27e..59c1b35d4 100644 --- a/modules/book/book.module +++ b/modules/book/book.module @@ -80,7 +80,7 @@ function book_toc($parent = 0, $offset = 0, $toc = array()) { $result = db_query("SELECT n.*, b.* FROM node n LEFT JOIN book b ON n.nid = b.nid AND n.lid = b.lid WHERE n.type = 'book' AND n.status = '$status[posted]' AND b.parent = '$parent' ORDER BY b.weight"); while ($node = db_fetch_object($result)) { $toc[$node->nid] = ($offset ? $offset : "") ."". ++$number .". $node->title"; - $toc = book_toc($node->nid, ($offset ? "$offset." : "") ."$number.", $toc); + $toc = book_toc($node->nid, ($offset ? $offset : "") ."$number.", $toc); } return $toc; } diff --git a/modules/moderation.module b/modules/moderation.module index 4df29e080..1faf9542d 100644 --- a/modules/moderation.module +++ b/modules/moderation.module @@ -99,8 +99,6 @@ function moderation_page() { global $id, $op, $user, $vote; if ($user->id) { - $user = user_load($user->userid); - switch($op) { case "Vote"; moderation_vote(check_input($id), check_input($vote)); -- cgit v1.2.3