Closed
Bug 71845
Opened 24 years ago
Closed 24 years ago
Schedule/Notify tabs in bookmark properties don't show if url starts with HTTP (upper case)
Categories
(SeaMonkey :: Bookmarks & History, defect)
SeaMonkey
Bookmarks & History
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: nahor.j+bugmoz, Assigned: timeless)
Details
Attachments
(2 files)
807 bytes,
patch
|
Details | Diff | Splinter Review | |
864 bytes,
patch
|
Details | Diff | Splinter Review |
If a bookmark location has the protocol written in upper case ("HTTP" instead of
"http") the Schedule and Notify tabs don't show up in the properties dialog box.
mao: this is your code, please r= or suggest an alternative. alecf or ben
please a= if mao doesn't object to the style of my fix.
Comment 3•24 years ago
|
||
Comment 4•24 years ago
|
||
I don't mind which way we do it, but if we go with timeless' patch, I'd rather
see something like:
var temp = gBookmarkURL.toLowerCase();
if (temp.indexOf("http://") != 0 &&
temp.indexOf("https://") != 0) {
I'd say let Ben decide and timeless or i can r= the chosen code.
Comment 5•24 years ago
|
||
Incidentally, the reason not to use timeless' original patch is that case
sensitive bookmarks would be ruined by it. So either the temp variable or my
patch would be the way to go.
Comment 6•24 years ago
|
||
a=ben
Comment 7•24 years ago
|
||
r=jag on either of mao's suggested fixed.
mao, you pick a version :-)
Comment 8•24 years ago
|
||
fix checked in. went with the latest attached patch, not the inline version.
Status: NEW → RESOLVED
Closed: 24 years ago
Resolution: --- → FIXED
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•