| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
| |
PHPBB3-11103
|
| |
|
|
| |
PHPBB3-11103
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
How do we do this? If an item is unread, the URL to view that item will
be the URL to mark it as read (index.php?mark_notification=$id). When the
URL is visited it marks the item as read and redirects them to the correct
URL for the item.
If the item is read, the URL is directly to the item.
Prettify the html output
PHPBB-11103
|
| |
|
|
|
|
| |
Also add the ability to specify an _EXPLAIN text for the notification option
PHPBB3-11103
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
EXTENSION AUTHORS TAKE NOTE! This is to prevent errors with notifications
from extensions!
Set is_disabled to 1 for all your notifications when your extension is
disabled so they are ignored and do not cause errors.
When your extension is enabled again, set is_disabled to 0 and your
notifications will be working again.
PHPBB3-11103
|
| |
|
|
| |
PHPBB3-11103
|
| |\ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
From a recent change, when your posts/topics are approved, they will be
marked read automatically because you've read the topic/post already.
To change that I've forced the notification to be marked unread and
attempted to reset the read status on the post/topic to be unread before
the post that was approved.
This does not seem to work so well and I don't know of any way this can
really be properly fixed, so the code I was working on I've commented out.
For now, users will just need to manually mark these types of notifications
as read. I cannot think of a way for this to be fixed without running
two additional queries on every viewtopic.
PHPBB3-11103
|
| | |
| |
| |
| |
| |
| |
| | |
They do not need to receive notifications if their post/topic is approved or
disapproved
PHPBB3-11103
|
| | |
| |
| |
| | |
PHPBB3-11103
|
| | |
| |
| |
| | |
PHPBB3-11103
|
| |/
|
|
| |
PHPBB3-11103
|
| |\ |
|
| | |\
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* dhruvgoel92/ticket/11051:
[ticket/11051] fix spaces
[ticket/11051] add common_words variable
[ticket/11051] remove unnecessary comment
[ticket/11051] add get_word_len() in sphinx search
[ticket/11051] use get_word_length in search backend
[ticket/11051] use get_common_words in search backend
[ticket/11051] function instead of accessing property in search
[ticket/11051] add public functions for public properties
|
| | | |
| | |
| | |
| | | |
PHPBB3-11051
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
get_word_len() for sphinx search backend returns false always and
triggers proper error.
PHPBB3-11051
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
public retrieval functions for all public properties and change the
properties to protected in all search backends.
PHPBB3-11051
|
| | |\ \
| | | |
| | | |
| | | |
| | | | |
* bantu/ticket/11100:
[ticket/11100] Mark can_use_ssl() and can_use_tls() as static.
|
| | | | |
| | | |
| | | |
| | | | |
PHPBB3-11100
|
| | |\ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* bantu/ticket/8713:
[ticket/8713] Update untrimmed_variable() doc block.
[ticket/8713] Revert changes to ucp_profile, ucp_register and acp_users.
[ticket/8713] Trim password in auth_db to keep compatibility.
[ticket/8713] Call htmlspecialchars_decode() on transfer (e.g. ftp) passwords.
[ticket/8713] Rename untrimed_variable() to untrimmed_variable().
[ticket/8713] DRY: variable() and untrimed_variable() into a protected method.
[ticket/8713] Fix type_cast_helper.php doc blocks: Add punctuation etc.
[ticket/8713] Always trim array keys.
[ticket/8713] Add simple (non-nested) test case for untrimmed set_var().
[ticket/8713] Use \t in double quotes instead of tabs.
[ticket/8713] Use correct parameter for nested data.
[ticket/8713] Adjust test method name to other recursive_set_var() tests.
[ticket/8713] Do not trim login inputs
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Currently only auth_db is supported there and the password needs to be trimmed
for compatibility because user_password stores
phpbb_hash(htmlspecialchars(trim($password)))
Setting passwords for other auth modules is currently not supported.
Once setting/changing passwords is supported by auth plugins, the
untrimmed_variable() should be used here and the result should be passed
to the auth plugin.
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Create a function to request variables which are not trimmed.
All requests for passwords (except forum passwords) now use the
untrimmed request function.
PHPBB3-8713
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Mark post/topic in queue notifications read when visiting mcp
Change post/topic in queue notification url to use MCP.
Fix the bug:
Approving a topic marks the topic as read, but before the notification
is created for the user approving the topic (if they would get a
notification that the topic has been made). This causes it to be
stuck "unread".
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| |\ \ \ \ \
| |/ / / / |
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11140
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Just for posts currently and not yet outputted.
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Also rename to "Edit notification options" for consistency
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Was introduced with ff136cc96a62147bc7468b716b86a30f12754e77
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Fixing extension type/method naming scheme so they can be autoloaded.
Other bugs
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | | |
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
It's no longer needed
PHPBB3-11103
|
| | | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Do not use phpbb_container everywhere (makes testing difficult)
PHPBB3-11103
|