Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
verify_auth() was missing from a few places
Browse files Browse the repository at this point in the history
  • Loading branch information
grantmd committed Jan 8, 2014
1 parent e74c248 commit fe0469f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions add.php
@@ -1,6 +1,8 @@
<?php
$dir = dirname(__FILE__);
include("$dir/lib/init.php");

verify_auth();

load_plugins();

Expand Down
2 changes: 2 additions & 0 deletions edit.php
@@ -1,6 +1,8 @@
<?php
$dir = dirname(__FILE__);
include("$dir/lib/init.php");

verify_auth();

load_plugins();

Expand Down
2 changes: 2 additions & 0 deletions view.php
@@ -1,6 +1,8 @@
<?php
$dir = dirname(__FILE__);
include("$dir/lib/init.php");

verify_auth();

load_plugins();

Expand Down

0 comments on commit fe0469f

Please sign in to comment.