From c664e8d8722d1870f1b3d97332d6070391ca5c85 Mon Sep 17 00:00:00 2001 From: Shish Date: Fri, 27 Jan 2012 18:17:55 +0000 Subject: [PATCH] missing a bit --- contrib/tag_history/main.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/contrib/tag_history/main.php b/contrib/tag_history/main.php index d6f00845..5cfd2ac1 100644 --- a/contrib/tag_history/main.php +++ b/contrib/tag_history/main.php @@ -63,7 +63,9 @@ class Tag_History implements Extension { { // this is a request to revert to a previous version of the tags if($config->get_bool("tag_edit_anon") || !$user->is_anonymous()) { - $this->process_revert_request($_POST['revert']); + if(isset($_POST['revert'])) { + $this->process_revert_request($_POST['revert']); + } } } else if($event->count_args() == 1)