From 99b90224336e9f9cfc8d70bd79ac490ebe12b548 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Thu, 25 Aug 2005 04:49:51 +0000 Subject: [PATCH] r381: Don't jump to a (null) --- admin/jump.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/jump.php b/admin/jump.php index 6381bad..652f236 100755 --- a/admin/jump.php +++ b/admin/jump.php @@ -12,7 +12,7 @@ require_once('./global.php'); -if ($bugsys->in['jumplocation'] == -1) +if ($bugsys->in['jumplocation'] == -1 OR !$bugsys->in['jumplocation']) { $admin->error(lang::r('Please select a location to jump to. Your selection is invalid.')); } -- 2.22.5