diff options
| author | Cassio de Campos <cassiopc@gmail.com> | 2017-08-04 13:20:51 +0000 |
|---|---|---|
| committer | Cassio de Campos <cassiopc@gmail.com> | 2017-08-04 13:20:51 +0000 |
| commit | af925fb218e7a333759eb49c667bfb22eb71196d (patch) | |
| tree | 9aa8254c42a50d2c6bb253074c54609287258053 /src/admin/problem.php | |
| parent | 5592a6c28bdf04165d60a9579f70f9c63fc830ca (diff) | |
| download | boca-af925fb218e7a333759eb49c667bfb22eb71196d.tar.gz boca-af925fb218e7a333759eb49c667bfb22eb71196d.zip | |
bug fixes
Diffstat (limited to 'src/admin/problem.php')
| -rw-r--r-- | src/admin/problem.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/admin/problem.php b/src/admin/problem.php index 4228d05..d0ed636 100644 --- a/src/admin/problem.php +++ b/src/admin/problem.php @@ -16,7 +16,7 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. //////////////////////////////////////////////////////////////////////////////// // Last modified 08/aug/2015 by cassio@ime.usp.br -if ($_POST["confirmation"] != "confirm") +if (!isset($_POST["confirmation"]) || $_POST["confirmation"] != "confirm") unset($_POST['noflush']); require('header.php'); |