This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
5821
Archived fixes / Re: Time offset (auto detect)
« on March 25th, 2012, 09:47 PM »
Correct Time is shown for me.
This is a French server btw but I believe most Europeans are on the same time savings dates?
This is a French server btw but I believe most Europeans are on the same time savings dates?
5822
Archived fixes / Re: IE8: menu broken (with fix)
« on March 25th, 2012, 07:15 PM »
I don't know. It didn't have an anchor. But I'm making sure that if this happens again, I'll go and check thoroughly.
About the quick edit bug -- it was because it attempted to access the subject area when it isn't shown in Mobile mode. Because we need to be able to edit the subject, I simply added an empty <h5> and it's working again.
Phew. (Well, the styling for that h5 sucks though..)
About the quick edit bug -- it was because it attempted to access the subject area when it isn't shown in Mobile mode. Because we need to be able to edit the subject, I simply added an empty <h5> and it's working again.
Phew. (Well, the styling for that h5 sucks though..)
5823
Features / Re: New revs
« on March 25th, 2012, 05:41 PM »
rev 1508
(6 files, 4kb)
+ Wedge will now silently redirect outdated cached JS/CSS requests to their latest version (or at least any version that works.) Also, don't log errors 404 for completely missing cache files. (QueryString.php)
! Just some extra topic privacy protection in post merging... (SplitTopics.php)
! Ensure that the smart tag splitter won't mistake array members in plain view (like $something['variable']) for tags. (post.js)
+ Apparently, I forgot to commit the template for per-board moderators. (Display.template.php)
! Fixed invisible 'member' thoughts for members without a 'regular member' group. (Home.php)
* Hide the homepage's opening blurb on mobile skins. (Home.template.php)
(6 files, 4kb)
+ Wedge will now silently redirect outdated cached JS/CSS requests to their latest version (or at least any version that works.) Also, don't log errors 404 for completely missing cache files. (QueryString.php)
! Just some extra topic privacy protection in post merging... (SplitTopics.php)
! Ensure that the smart tag splitter won't mistake array members in plain view (like $something['variable']) for tags. (post.js)
+ Apparently, I forgot to commit the template for per-board moderators. (Display.template.php)
! Fixed invisible 'member' thoughts for members without a 'regular member' group. (Home.php)
* Hide the homepage's opening blurb on mobile skins. (Home.template.php)
5824
Archived fixes / Re: IE8: menu broken (with fix)
« on March 25th, 2012, 05:10 PM »
But I'm not in IE..? And my URL was free of anchors...
5825
Archived fixes / Re: IE8: menu broken (with fix)
« on March 25th, 2012, 04:27 PM »
Strangest thing just happened to me. I wrote the post above. Then click Submit. I got redirected to the page with a /new/#new anchor (just "/15/"), and half of the post was missing! I was saying, after this, something along the lines of:
"Maybe Microsoft issued a patch for IE8 that fixes the problem, and a stock XP/2003 doesn't have the fix?"
:edit: It worked, but JS seems to be broken. An issue with the 'subject' variable in the QuickModify object?!
"Maybe Microsoft issued a patch for IE8 that fixes the problem, and a stock XP/2003 doesn't have the fix?"
:edit: It worked, but JS seems to be broken. An issue with the 'subject' variable in the QuickModify object?!
5826
Archived fixes / Re: IE8: menu broken (with fix)
« on March 25th, 2012, 04:25 PM »
Still, I'm suspicious about all of this...
5827
Archived fixes / Re: Undefined index: start_from
« on March 25th, 2012, 04:25 PM »Yes, it's a touch broken at present. But also note that when a draft is saved, it does actually notify you under the 'post' button that a draft has been saved, and even gives you the option to remove it from there.
5828
Archived fixes / Re: Smart Tag Closer
« on March 25th, 2012, 03:12 AM »
Hmm. Wed have to apply it to all earlier posts through a maintenance task or something.
5829
Archived fixes / Re: Smart Tag Closer
« on March 24th, 2012, 11:57 PM »
I do remember. Worked hard on that one. Feels like every month I find myself a new Herculean task to accomplish ;)
I didn't get what you meant though. Now I do. You were talking about the fact that it was parse_BBC that did the matching.
I didn't get what you meant though. Now I do. You were talking about the fact that it was parse_BBC that did the matching.
5830
Archived fixes / Re: Smart Tag Closer
« on March 24th, 2012, 11:01 PM »
Post Time...? I don't see how...
5831
Features / Re: New revs
« on March 24th, 2012, 07:33 PM »
rev 1507
(5 files, 4kb)
! Now ensuring that westr::close_tags() doesn't close any self-closed tags. (Class-String.php)
! Show Newest Posts First would render the New icons incorrectly in topic pages. (Display.php)
! Fixed incorrect number of table cells per line in media album lists. (Subs-Media.php)
* Moderators should be able to merge double posts from guests. (Display.php)
* Moved moderator list to the sidebar, as in Noisen. (Display.php, MessageIndex.php, Display.template.php, MessageIndex.template.php)
* Spacinazi. (Display.php)
(5 files, 4kb)
! Now ensuring that westr::close_tags() doesn't close any self-closed tags. (Class-String.php)
! Show Newest Posts First would render the New icons incorrectly in topic pages. (Display.php)
! Fixed incorrect number of table cells per line in media album lists. (Subs-Media.php)
* Moderators should be able to merge double posts from guests. (Display.php)
* Moved moderator list to the sidebar, as in Noisen. (Display.php, MessageIndex.php, Display.template.php, MessageIndex.template.php)
* Spacinazi. (Display.php)
5832
Archived fixes / Re: Smart Tag Closer
« on March 24th, 2012, 06:42 PM »Not at post time, no. It's actually done at parse time for most tags, with only massive-layout-breaking ones done at preparse.
Also, just noticed it gets confused if you happen to have a quote with something like $_REQUEST['start'] in it as it tries to make a closing [/'start'] tag, but ['start'] should be overridden somewhere in parsing to prevent it being considered for parsing.
I remember hearing about issues with the splitter. I think I fixed them, though. From what you're telling me, it would be simpler to just ensure that the tag is only a series of alphabetical characters...
else if (log_tags && !in_array(baretag, closed_tags) && /[^a-zA-Z]/.exec(baretag) != null)I added the last part after the &&. Do you think that would be enough?
5833
The draft code should at least preparse, though, right?
I will, once I get everything set up, investigate this thoroughly - but I still don't remember even SMF doing addslashes anywhere, because there is absolutely no reason for it to do so.
5834
Archived fixes / Re: Smart Tag Closer
« on March 24th, 2012, 05:26 PM »
In case you don't know, Wedge and even SMF have always done that automatically at post time... ;)
5835
Features / Re: New revs
« on March 24th, 2012, 02:27 PM »
rev 1506
(4 files, 2kb)
! Thought parent links (@Username) didn't always work, because they were referring to the parent thought, instead of the master thought. (Home.php)
+ Profile thought lists will now highlight the parent thought you came for. (Profile.template.php, sections.css)
- If your forum is old enough (YaBB era) to still have threadid links pointing to it, then you're certainly skilled enough to do a regex redirection in your htaccess file, and you'll be happy to save a test for all other users. (QueryString.php)
(4 files, 2kb)
! Thought parent links (@Username) didn't always work, because they were referring to the parent thought, instead of the master thought. (Home.php)
+ Profile thought lists will now highlight the parent thought you came for. (Profile.template.php, sections.css)
- If your forum is old enough (YaBB era) to still have threadid links pointing to it, then you're certainly skilled enough to do a regex redirection in your htaccess file, and you'll be happy to save a test for all other users. (QueryString.php)