Closed
Bug 286765
Opened 20 years ago
Closed 19 years ago
Download and download count is broken for extensions containing spaces in their name
Categories
(addons.mozilla.org Graveyard :: Public Pages, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
1.0
People
(Reporter: ma1, Assigned: ma1)
References
()
Details
Attachments
(1 file, 2 obsolete files)
(deleted),
patch
|
csthomas
:
first-review+
|
Details | Diff | Splinter Review |
A silly bug in install.php (related to the even more silly direct usage of
hardcoded full URIs in queries) breaks download count.
This bug doesn't break JavaScript install trigger (Firefox and Mozilla
extensions can be properly installed), but it breaks download by redirection, so
affected Thunderbird extensions can't be downloaded in an obvious way (see
https://addons.update.mozilla.org/extensions/moreinfo.php?id=170 ).
Assignee | ||
Updated•20 years ago
|
Status: NEW → ASSIGNED
Assignee | ||
Comment 1•20 years ago
|
||
Assignee | ||
Updated•20 years ago
|
Attachment #177902 -
Flags: first-review?(mike.morgan)
Assignee | ||
Comment 2•20 years ago
|
||
Since I wrote attachment 177902 [details] [diff] [review], I've been wondering why that strange
str_replace() had been coded in first place. Then the enlightment: a lot of
URIs containing the "+" character are passed to install.php *not encoded*, so
someone thought this had to be fixed converting spaces (which *may* come from
PHP automatic urldecoding of "+") back to "+". Obviously, in such a situation
you should patch the code that produces malformed URLs, rather than trying to
guess a sane one. And it happens that this URI building code, which used to be
scattered all around, recently has been refactored in a centralized function by
myself: yes, I overlooked the urlencoding bug when I moved that line, but
thanks God now there's only one place to patch :-)
Assignee | ||
Updated•20 years ago
|
Attachment #177912 -
Flags: first-review?(mike.morgan)
Assignee | ||
Comment 3•20 years ago
|
||
Notice that patch in attachment 177912 [details] [diff] [review] is a diff on a function born in
attachment 172144 [details] [diff] [review], hence the dependency on bug 275900 which is fixed but whose
patches are not on the live site yet.
Depends on: 275900
Comment 4•20 years ago
|
||
Comment on attachment 177912 [details] [diff] [review]
This one prevents a regression, properly encoding URIs passed to install.php
Looks good.
In the future, could we use single quotes instead of double quotes, and cat the
strings (or at least use {$filename}). It makes the code easier to read.
Attachment #177912 -
Flags: first-review?(mike.morgan) → first-review+
Comment 5•20 years ago
|
||
Comment on attachment 177902 [details] [diff] [review]
This one fixes the bug, removing an useless (and harmful) str_replace()
Looks good - thanks, mao.
Again, the single vs. double quotes thing - $_GET['uri'] is a tad more proper
than $_GET["uri"] since 'uri' is not a variable or constant but an associative
index. Not a big deal, but a good thing to know.
Attachment #177902 -
Flags: first-review?(mike.morgan) → first-review+
Comment 6•20 years ago
|
||
*** Bug 281572 has been marked as a duplicate of this bug. ***
Comment 7•20 years ago
|
||
*** Bug 289018 has been marked as a duplicate of this bug. ***
Please un-bitrot the patches.
Assignee | ||
Comment 9•19 years ago
|
||
unbirotting as requested
Attachment #177902 -
Attachment is obsolete: true
Attachment #177912 -
Attachment is obsolete: true
Attachment #186216 -
Flags: first-review?(cst)
Attachment #186216 -
Flags: first-review?(cst) → first-review+
Comment 10•19 years ago
|
||
Check in to branch.
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•9 years ago
|
Product: addons.mozilla.org → addons.mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•