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

Commit fe0469f

Browse files
committed
verify_auth() was missing from a few places
1 parent e74c248 commit fe0469f

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

add.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
$dir = dirname(__FILE__);
33
include("$dir/lib/init.php");
4+
5+
verify_auth();
46

57
load_plugins();
68

edit.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
$dir = dirname(__FILE__);
33
include("$dir/lib/init.php");
4+
5+
verify_auth();
46

57
load_plugins();
68

view.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22
$dir = dirname(__FILE__);
33
include("$dir/lib/init.php");
4+
5+
verify_auth();
46

57
load_plugins();
68

0 commit comments

Comments
 (0)