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.
31
Bug reports / Post moderation always shows 10 posts
« on June 9th, 2013, 05:11 AM »
Shouldn't it obey the settings?
https://github.com/SimpleMachines/SMF2.1/pull/385/files
(I checked the code and the hardcoded number is indeed still there.)
https://github.com/SimpleMachines/SMF2.1/pull/385/files
(I checked the code and the hardcoded number is indeed still there.)
33
Off-topic / My brother is in England
« on June 4th, 2013, 01:04 PM »
...as part of a study abroad program by ASU. His blog on it is http://paulrayes.com/
34
Plugins / Notifications (Reported Post)
« on May 31st, 2013, 11:22 AM »35
Plugins / Notifications (Moved Topic)
« on May 30th, 2013, 01:17 PM »
The moved topic annoyancesnotices via. PM are really driving me crazy. So I decided to extend the notification system to include these. If a member moves their own topic, they won't get a cheeseburgernotification because they obviously already know about it. Or, I hope they do. Hmm, maybe.... ZOMBIE INVASION!!
36
Plugins / Recent Topic Moderation History
« on May 30th, 2013, 09:07 AM »37
Archived fixes / A plugin must declare an action the long way
« on May 29th, 2013, 11:09 AM »
I seeQuote iin the man index file. However, a plugin must still declare their action the long way.
Note that this isn't through the XML interface.
// Remember, if the function is the same as the filename, you may declare it just once.
Note that this isn't through the XML interface.
38
Archived fixes / action_list is called too late
« on May 29th, 2013, 10:54 AM »
Call to the hook must be moved right below the keepalive check. Then plugins can add their own actions again!
39
Archived fixes / Buffer hook does not load plugin files
« on May 29th, 2013, 09:20 AM »
When a plugin adds a buffer hook, a fatal error happens because it looks for the wrong file.
In obExit(), the offending code is
Code: [Select]
It should be
Code: [Select]
In obExit(), the offending code is
if (!empty($fun[2]) && $fun[2] === 'plugin')
require_once($fun[1] . '.php');It should be
if (!empty($fun[2]))
loadPluginSource($fun[2], $fun[1]);40
Archived fixes / Subject 0 is treated as empty
« on May 29th, 2013, 09:07 AM »
Reproducible on this site.
Topic subject:
0
Error: Subject was left empty
Topic subject:
0
Error: Subject was left empty
41
Bug reports / When a bug is fixed
« on May 24th, 2013, 02:51 AM »
Once you can confirm the bug you reported in this board is fixed, mark it as solved. I can then easily spot such topics and move them away.
43
Archived fixes / Notifications bar iinvalid markup
« on March 29th, 2013, 09:48 PM »
Calling @Dragooon! Block elements inside an inline element is a no-noo.
Please fix it. Or I'll make you watch The Tek. All day. With popcorn and kool-aid. And I get to laugh. :niark:
Please fix it. Or I'll make you watch The Tek. All day. With popcorn and kool-aid. And I get to laugh. :niark:
44
Archived fixes / Initializing the Wedge templating magic
« on March 23rd, 2013, 11:41 PM »
In Load.php, I see $context['skeleton'] = '';, when it is used as an array.
Siidenote: Can PHP force type strictness?
Siidenote: Can PHP force type strictness?
45
Archived fixes / Manage permissions error
« on March 22nd, 2013, 10:08 AM »
I went to enable post count group permissions but got:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE add_deny = 0' at line 2
File: I:\www\wedge\trunk\Sources\ManagePermissions.php
Line: 1035
DELETE FROM wedge_permissions, wedge_board_permissions
WHERE add_deny = 0
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE add_deny = 0' at line 2
File: I:\www\wedge\trunk\Sources\ManagePermissions.php
Line: 1035
DELETE FROM wedge_permissions, wedge_board_permissions
WHERE add_deny = 0