29
I Use This!
Inactive

Commits : Listings

Analyzed about 19 hours ago. based on code collected 2 days ago.
Jun 15, 2024 — Jun 15, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Actually use returned values from mail filter function. Fixes habari/habari#649 More... over 8 years ago
Fix quote_flag parameters, apparently chaining the bit flags is not allowed in method parameter defaults. More... over 8 years ago
Properly use the incoming values in the plugin hooks for faceted search in AdminPostsHandler. Allows plugins to add to the lists, too. Fixes habari/habari#627 More... over 8 years ago
Move the ajax_facets handler to the base class "AdminHandler". Allow (and require) to specify a page in the facets rewriterule. Allows all handlers to use the same rewrite rule for the faceted search. Requires the AdminTagsHandler to make all facets and facet values static, but maybe they should be anyway. For some reason, plugin filter hooks in handlers have to be static (that is because in Plugins::filter() call_user_func_array() is used and it calls methods static when the class name is passed as string, which is happening here, for a reason I don't know). More... over 8 years ago
Add ENT_SUBSTITUTE (and on the way, ENT_HTML5) to htmlspecialchars calls. This was introduced in PHP 5.4 and we had to wait until we required that version. Fixes habari/habari#51 More... over 8 years ago
Bring back page navigation to manage posts page. Fix typo. For habari/habari#605 More... over 8 years ago
In update manager, create a query string for the faceted search query. Use it on the posts page to update the window URL. Remove some old code. Fixes #618 More... over 8 years ago
This code should be unnecessary now, too More... over 8 years ago
Remove more outdated code, we don't use the loupe anymore More... over 8 years ago
Move local variables for the post query string to class level. This allows us to efficiently grab values from $_GET and translate them to the faceted search. This restores the functionality of the manage page to be called with parameters from the URL. Will also help with habari/habari#636 More... over 8 years ago
Remove offset, we have page now. Add limit. More... over 8 years ago
Fix retrieving posts by author, add page parameter. The parameters in the fetch function and the facets did not match at all, whoever did this should use MS Windows forever. More... over 8 years ago
Remove outdated code More... over 8 years ago
Fix undefined variable and invalid foreach argument by removing old code and adding additional checks More... over 8 years ago
Fix fulltext search for manage posts faceted search. More... over 8 years ago
Do not try to get tags HTML when there are no tags More... over 8 years ago
Updated habarisilo from submodule More... over 8 years ago
Add template for textmulti and re-work the old JS. Remove IDs for input as they are not necessary and we cannot have them on added elements reliably. Make the rest work with new FormUI. Add a bit of markup. Basic, but working, at least as good as before. Fixes habari/habari#588 More... over 8 years ago
Add some hooks to Media class. Fixes habari/habari#194 More... over 8 years ago
Simple fix for posts without author. Fixes habari/habari#635 More... over 8 years ago
Merge pull request #87 from habari/fix_596 More... over 8 years ago
Use partial fix for habari/habari#643 to fix selecting tags after filtering. For habari/habari#596 More... over 8 years ago
Make sure dynamic elements are selected by moving selecting into the update function. The whole updating function could possibly be written differently - it does not use $(this) though clicked elements are correctly passed because .on() is used correctly. Someone might come up with a solution where we do not need to rewrite the entire result string and grab all the checkboxes everytime one of them is clicked. More... over 8 years ago
Fix a few bugs where we try to do something like isset($thing->info->bla). That does not work, AFAIK because info is returned by __get() magic method and in the result the __isset() magic method in the info object does not come to execution. I don't know why that is, but it is like that. Maybe it works in some PHP versions, in 7.0.12 it does not. Fixes habari/habari#642 More... over 8 years ago
Add tag processing to fetch_posts(). Fixes habari/habari#624 More... over 8 years ago
Merge branch 'master' of github.com:habari/system More... over 8 years ago
Remove handler_vars usage, that is sooo 0.9. Fixes #631 More... over 8 years ago
Remove handler_vars usage, that is sooo 0.9. Fixes habari/habari#631 More... over 8 years ago
Fix errors on logs page referencing the outdated and no longer existing navigator. I thought I had found all references... More... over 8 years ago
Fix return value of publish form submit validator: Return something even if validation passes. More... over 8 years ago