summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTill Schäfer <till2.schaefer@uni-dortmund.de>2019-12-12 16:44:34 +0100
committerJoonas Niilola <juippis@gentoo.org>2019-12-12 19:53:34 +0200
commit1bdaf4d2d4310bb4ff3455d9f3c0c062437252a0 (patch)
tree22179acf308233d39e411afab02dd3e425aa6923 /www-apps/davical/files
parentwww-apps/davical: bump to 1.1.9.2 (diff)
downloadgentoo-1bdaf4d2d4310bb4ff3455d9f3c0c062437252a0.tar.gz
gentoo-1bdaf4d2d4310bb4ff3455d9f3c0c062437252a0.tar.bz2
gentoo-1bdaf4d2d4310bb4ff3455d9f3c0c062437252a0.zip
www-apps/davical: remove vulnerable versions
Bug: https://bugs.gentoo.org/702514 Package-Manager: Portage-2.3.79, Repoman-2.3.16 Signed-off-by: Till Schäfer <till2.schaefer@uni-dortmund.de> Closes: https://github.com/gentoo/gentoo/pull/13956 Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'www-apps/davical/files')
-rw-r--r--www-apps/davical/files/davical-1.1.7-fix_php4_style_constructors.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/www-apps/davical/files/davical-1.1.7-fix_php4_style_constructors.patch b/www-apps/davical/files/davical-1.1.7-fix_php4_style_constructors.patch
deleted file mode 100644
index a236e2823373..000000000000
--- a/www-apps/davical/files/davical-1.1.7-fix_php4_style_constructors.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff --git a/inc/HTTPAuthSession.php b/inc/HTTPAuthSession.php
-index e3b208c6..08663286 100644
---- a/inc/HTTPAuthSession.php
-+++ b/inc/HTTPAuthSession.php
-@@ -60,7 +60,7 @@ class HTTPAuthSession {
- /**
- * The constructor, which just calls the type supplied or configured
- */
-- function HTTPAuthSession() {
-+ function __construct() {
- global $c;
-
- if ( ! empty($_SERVER['PHP_AUTH_DIGEST'])) {
-diff --git a/inc/PublicSession.php b/inc/PublicSession.php
-index 28e06173..e779a9df 100644
---- a/inc/PublicSession.php
-+++ b/inc/PublicSession.php
-@@ -59,7 +59,7 @@ class PublicSession {
- /**
- * The constructor, which just calls the actual type configured
- */
-- function PublicSession() {
-+ function __construct() {
- global $c;
-
- $principal = new Principal('username','unauthenticated');
-diff --git a/inc/caldav-client.php b/inc/caldav-client.php
-index 4c1bf67f..b32c5c91 100644
---- a/inc/caldav-client.php
-+++ b/inc/caldav-client.php
-@@ -48,7 +48,7 @@ class CalDAVClient {
- * @param string $pass The password for that user
- * @param string $calendar The name of the calendar (not currently used)
- */
-- function CalDAVClient( $base_url, $user, $pass, $calendar = '' ) {
-+ function __construct( $base_url, $user, $pass, $calendar = '' ) {
- $this->user = $user;
- $this->pass = $pass;
- $this->calendar = $calendar;