Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorLukas Winkler <git@lw1.at>2019-09-10 03:17:02 +0300
committerThomas Steur <tsteur@users.noreply.github.com>2019-09-10 03:17:02 +0300
commit5e1432643ac243bd3b2cf7dba841c46bda758405 (patch)
tree9682422e83cee88c42ea7488b305e72e16fccc5c /libs
parent14c4688dab2f9fa13115adeb30477a9fcab467c7 (diff)
fix magic quotes deprecation warning (#14873)
Diffstat (limited to 'libs')
-rw-r--r--libs/HTML/QuickForm2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/HTML/QuickForm2.php b/libs/HTML/QuickForm2.php
index 48d10de076..e3b768c39b 100644
--- a/libs/HTML/QuickForm2.php
+++ b/libs/HTML/QuickForm2.php
@@ -106,7 +106,7 @@ class HTML_QuickForm2 extends HTML_QuickForm2_Container
'post' == $method && (!empty($_POST) || !empty($_FILES))))
{
$this->addDataSource(new HTML_QuickForm2_DataSource_SuperGlobal(
- $method, get_magic_quotes_gpc()
+ $method, False
));
}
if ($trackSubmit) {