From 153b8fe2c7ff506b038f5e304227f0cd378b2dc3 Mon Sep 17 00:00:00 2001 From: ruan Date: Sat, 3 Oct 2015 12:08:40 +0200 Subject: [PATCH] Print PHP version --- includes/settings.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/includes/settings.php b/includes/settings.php index da1b4d3..0a3e1a8 100644 --- a/includes/settings.php +++ b/includes/settings.php @@ -101,6 +101,10 @@ final class Settings { if ($driver === 'pgsql') { $this->conn->query("SET NAMES 'UTF8';"); } + + if ($this->debug_mode > 0) { + echo PHP_VERSION; + } } } }