summaryrefslogtreecommitdiff
path: root/www/horde/patches/patch-ac
diff options
context:
space:
mode:
Diffstat (limited to 'www/horde/patches/patch-ac')
-rw-r--r--www/horde/patches/patch-ac34
1 files changed, 0 insertions, 34 deletions
diff --git a/www/horde/patches/patch-ac b/www/horde/patches/patch-ac
deleted file mode 100644
index 00026b16c8d..00000000000
--- a/www/horde/patches/patch-ac
+++ /dev/null
@@ -1,34 +0,0 @@
-$NetBSD: patch-ac,v 1.3 2006/06/16 09:23:21 adrianp Exp $
-
---- templates/problem/problem.inc.orig 2005-10-18 12:34:09.000000000 +0100
-+++ templates/problem/problem.inc
-@@ -31,17 +31,17 @@ function validate()
-
- <tr>
- <td class="light rightAlign"><?php echo _("Your Name") ?></td>
-- <td><input type="text" tabindex="1" name="name" value="<?php echo $name ?>" size="70" /></td>
-+ <td><input type="text" tabindex="1" name="name" value="<?php echo htmlspecialchars($name) ?>" size="70" /></td>
- </tr>
-
- <tr>
- <td class="light rightAlign"><?php echo _("Your Email Address") ?></td>
-- <td><input type="text" tabindex="2" name="email" value="<?php echo $email ?>" size="70" /></td>
-+ <td><input type="text" tabindex="2" name="email" value="<?php echo htmlspecialchars($email) ?>" size="70" /></td>
- </tr>
-
- <tr>
- <td class="light rightAlign"><?php echo _("Short Summary") ?></td>
-- <td><input type="text" tabindex="3" name="subject" value="<?php echo $subject ?>" size="70" /></td>
-+ <td><input type="text" tabindex="3" name="subject" value="<?php echo htmlspecialchars($subject) ?>" size="70" /></td>
- </tr>
-
- <tr>
-@@ -49,7 +49,7 @@ function validate()
- </tr>
- <tr>
- <td></td>
-- <td><textarea tabindex="4" name="message" rows="20" cols="80" wrap="hard"><?php echo $message ?></textarea></td>
-+ <td><textarea tabindex="4" name="message" rows="20" cols="80" wrap="hard"><?php echo htmlspecialchars($message) ?></textarea></td>
- </tr>
-
- <tr>