From a5d253d66bd4e934763c2764bfb0898a8de4d838 Mon Sep 17 00:00:00 2001 From: pjmattal Date: Wed, 4 May 2005 12:51:55 +0000 Subject: committed simo's patch for bug 2599 (leaving quotes in pkgdesc) --- web/html/pkgsubmit.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'web') diff --git a/web/html/pkgsubmit.php b/web/html/pkgsubmit.php index 5c9f266..6accce6 100644 --- a/web/html/pkgsubmit.php +++ b/web/html/pkgsubmit.php @@ -233,10 +233,14 @@ if ($_COOKIE["AURSID"]) { $lparts = explode("=", $line, 2); if (count($lparts) == 2) { # this is a variable/value pair, strip out - # array parens and any quoting + # array parens and any quoting, except in pkgdesc # - $pkgbuild[$lparts[0]] = str_replace(array("(",")","\"","'"), "", - $lparts[1]); + if ($lparts[0]=="pkgdesc") { + $pkgbuild[$lparts[0]] = trim($lparts[1], "\"\' "); + } else { + $pkgbuild[$lparts[0]] = str_replace(array("(",")","\"","'"), "", + $lparts[1]); + } } else { # either a comment, blank line, continued line, or build function # -- cgit v1.2.3-54-g00ecf