summaryrefslogtreecommitdiff
path: root/net/phpldapadmin/files/patch-lib_common.php
diff options
context:
space:
mode:
authorMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-03-06 22:40:55 -0600
committerMuhammad Moinur Rahman <bofh@FreeBSD.org>2022-03-06 22:43:50 -0600
commita9c2430bd9f97ff6bfcc2daf9a791f549a1d2f9b (patch)
tree25447597f0ab9d0eb6369a4549a28440d1f68a09 /net/phpldapadmin/files/patch-lib_common.php
parentdevel/R-cran-rlang: Update to 1.0.2 (diff)
net/phpldapadmin: Fix runtime with php80
- Pet portclippy/portfmt PR: 261990 Reported by: ohartmann@walstatt.org Approved by: ports@bsdserwis.com (maintainer) Sponsored by: Bounce Experts
Diffstat (limited to 'net/phpldapadmin/files/patch-lib_common.php')
-rw-r--r--net/phpldapadmin/files/patch-lib_common.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/net/phpldapadmin/files/patch-lib_common.php b/net/phpldapadmin/files/patch-lib_common.php
new file mode 100644
index 000000000000..3fd26f51085a
--- /dev/null
+++ b/net/phpldapadmin/files/patch-lib_common.php
@@ -0,0 +1,13 @@
+--- lib/common.php.orig 2021-12-12 02:35:51 UTC
++++ lib/common.php
+@@ -296,7 +296,9 @@ if ($app['language'] == 'auto') {
+ * Strip slashes from GET, POST, and COOKIE variables if this
+ * PHP install is configured to automatically addslashes()
+ */
+-if (@get_magic_quotes_gpc() && (! isset($slashes_stripped) || ! $slashes_stripped)) {
++if (@version_compare(phpversion(), '5.4.0', '<') &&
++ @get_magic_quotes_gpc() &&
++ (!isset($slashes_stripped) || !$slashes_stripped)) {
+ array_stripslashes($_REQUEST);
+ array_stripslashes($_GET);
+ array_stripslashes($_POST);