Bug 82600
| Summary: | squirrelmail-1.2.10-2 has syntax error in download.php | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Public Beta | Reporter: | d. johnson <drjohnson1> |
| Component: | squirrelmail | Assignee: | Gary Benson <gbenson> |
| Status: | CLOSED RAWHIDE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | phoebe | CC: | bugzilla.redhat.com, dyeager, havard, markku.arvekari, mcampbell, p.van.egdom |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2003-02-10 15:01:01 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 79578 | ||
Fixed as of 1.2.10-4. *** Bug 85689 has been marked as a duplicate of this bug. *** The same bug excists in version 1.2.11 The bug does not exist in 1.2.10-4, which is in Rawhide at this present moment in time. *** Bug 85724 has been marked as a duplicate of this bug. *** I feel you shoud issue another errata.
BTW, for those looking for a quick fix:
--- download.php.orig Fri Mar 7 10:20:35 2003
+++ download.php Fri Mar 7 10:20:43 2003
@@ -334,7 +334,7 @@
$suffix = $type1;
}
- $filename = 'untitled' . strip_tags($passed_ent_id) .$suffix);
+ $filename = 'untitled' . strip_tags($passed_ent_id) .$suffix;
}
*** Bug 85860 has been marked as a duplicate of this bug. *** |
From Bugzilla Helper: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.3b) Gecko/20030119 Description of problem: line 337 of /usr/share/squirrelmail/src/download.php is missing a matched set of parens. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. Load SM in your browser 2. Attempt to download anything 3. Profit! Actual Results: Error result because of missing paren. Expected Results: You should be able to download the file. Additional info: Either snag a newer CVS snap, or add the paren.