diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-02 10:09:43 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-05-02 10:09:43 +0000 |
commit | c36dd7cfd591c92a350cba696b82e432f45efc8a (patch) | |
tree | 81979c0f04e37de64cb3fa2214d93a1a9cc45700 | |
parent | b0ccafe75f84757937a212d86bf9322e721cde36 (diff) | |
download | brdo-c36dd7cfd591c92a350cba696b82e432f45efc8a.tar.gz brdo-c36dd7cfd591c92a350cba696b82e432f45efc8a.tar.bz2 |
- enabling the security check again.
-rw-r--r-- | update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php index 9537d49c6..9da3382f7 100644 --- a/update.php +++ b/update.php @@ -492,7 +492,7 @@ function update_page() { print "<html><h1>Drupal update</h1>"; // Security check: -if (!user_access(NULL)) { +if (user_access(NULL)) { update_page(); } else { |