Show Posts

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.

Messages - live627
421
Archived fixes / template_post_header_after: Invalid markup
« on October 7th, 2012, 07:19 AM »
I see a UL closer but not a matching opener.
422
Archived fixes / Re: Database column type 'decimal' ignored
« on October 7th, 2012, 02:57 AM »
I'm using FLOAT(18, 15) at the moment
423
Archived fixes / Delete media: 'No' button does not work
« on October 7th, 2012, 02:46 AM »
The 'No' button on the confirm box to delete media does nothing. Tested here on this site.
Posted: October 7th, 2012, 02:40 AM

No errors in the console when tested on localhost with un-minified JS.
424
Archived fixes / Re: Database column type 'decimal' ignored
« on October 7th, 2012, 02:33 AM »
Store a floated number, such as 12.5839. Latitude and longitude values from Google Maps.
425
Archived fixes / Re: Database column type 'decimal' ignored
« on October 7th, 2012, 02:16 AM »
What would you recommend instead? Float or double?
426
Archived fixes / Database column type 'decimal' ignored
« on October 7th, 2012, 02:02 AM »
In plugin-info.xml, if there is a column typed 'decimal', it is ignored. Since it is a valid type in MySQL, shouldn't it be added to the list of allowed database types?
427
The Pub / Re: topic_info
« on October 7th, 2012, 01:56 AM »
Just need to convert this
Code: [Select]
list ($locked, $context['notify'], $pinned, $pollID, $context['topic_last_message'], $id_member_poster, $id_first_msg, $first_subject, $lastPostTime) = wesql::fetch_row($request);
to this
Code: [Select]
$topic_info = wesql::fetch_assoc($request);
changing every occurance of the affected variables. Or is there something deeper that I missed?
428
Archived fixes / Re: Shortcode text is wrong in Firefox
« on October 7th, 2012, 12:54 AM »
I'm on   the release branch, currently on ff 15. Maybe the shortcodes differ between branches?
429
The Pub / Re: topic_info
« on October 7th, 2012, 12:49 AM »
What I'm asking, is if the same global variable can be populated the same way in both functions.
430
Plugins / Re: Another one
« on October 6th, 2012, 10:38 AM »
There is one note per topic - equivalent SMF mod http://custom.simplemachines.org/mods/index.php?mod=1906
Although it could be used for spam edit reasons...

Per-post notes is reserved for another plugin which hasn't been showcased yet. And it is much, much more powerful!
431
Plugins / Another one
« on October 6th, 2012, 08:13 AM »
This one shows a note attached to a topic. It is permissions based, so only specified groups can add or edit notes.

432
The Pub / Re: topic_info
« on October 6th, 2012, 05:22 AM »
Could it be done,  for reuse in plugins and such?
433
Archived fixes / Re: Shortcode text is wrong in Firefox
« on October 6th, 2012, 05:19 AM »
Whaaat? I thought it was always like that since the days it was called Phoenix...
434
Archived fixes / Shortcode text is wrong in Firefox
« on October 6th, 2012, 03:21 AM »
It's Shift + Alt + S to post. The text needs changed.
435
The Pub / topic_info
« on October 6th, 2012, 03:13 AM »
Why is $topic_info populated in Post2(),  but not Post()?