Code

Remove another unneeded patch
[pkg-nagvis.git] / debian / patches / visibility_magic-set-method.dpatch
diff --git a/debian/patches/visibility_magic-set-method.dpatch b/debian/patches/visibility_magic-set-method.dpatch
deleted file mode 100755 (executable)
index f2e9187..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/sh /usr/share/dpatch/dpatch-run
-## visibility_magic-set-method.dpatch by Hendrik Frenzel <hfrenzel@scunc.net>
-##
-## All lines beginning with `## DP:' are a description of the patch.
-## DP: make magicmethod __set public o avoid error
-
-@DPATCH@
-diff -urNad nagvis-1.4.6~/nagvis/includes/classes/validator/GlobalValidatorInteger.php nagvis-1.4.6/nagvis/includes/classes/validator/GlobalValidatorInteger.php
---- nagvis-1.4.6~/nagvis/includes/classes/validator/GlobalValidatorInteger.php 2010-02-04 21:51:13.000000000 +0100
-+++ nagvis-1.4.6/nagvis/includes/classes/validator/GlobalValidatorInteger.php  2010-03-04 15:03:24.000000000 +0100
-@@ -53,10 +53,10 @@
-        *
-        * @param   string   $name    Name from variable
-        * @param            $value   Value for variable
--       * @access  private
-+       * @access  public
-        * @author  Michael Luebben <michael_luebben@web.de>
-        */
--      private function __set($name, $value) {
-+      public function __set($name, $value) {
-               $this->name = $value;
-       }
-diff -urNad nagvis-1.4.6~/nagvis/includes/classes/validator/GlobalValidatorString.php nagvis-1.4.6/nagvis/includes/classes/validator/GlobalValidatorString.php
---- nagvis-1.4.6~/nagvis/includes/classes/validator/GlobalValidatorString.php  2010-02-04 21:51:13.000000000 +0100
-+++ nagvis-1.4.6/nagvis/includes/classes/validator/GlobalValidatorString.php   2010-03-04 15:04:56.000000000 +0100
-@@ -53,10 +53,10 @@
-        *
-        * @param   string   $name    Name from variable
-        * @param            $value   Value for variable
--       * @access  private
-+       * @access  public
-        * @author  Michael Luebben <michael_luebben@web.de>
-        */
--      private function __set($name, $value) {
-+      public function __set($name, $value) {
-               $this->name = $value;
-       }