Develop #3
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
v1.3.0
v1.4.0
wontfix
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DSR-Labs/de.deinestrainreviews.autoDeleteUnconfirmedUsers!3
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "develop"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This is the final PR Bugbot will review for you during this billing cycle
Your free Bugbot reviews will reset on December 17
Details
You are on the Bugbot Free tier. On this plan, Bugbot will review limited PRs each billing cycle.
To receive Bugbot reviews on all of your PRs, visit the Cursor dashboard to activate Pro and start your 14-day free trial.
Bug: Email Body: Template Parameter Mismatch
The email body is constructed incorrectly.
RecipientAwareTextMimePartexpects a template name and variables array, but the code passes pre-rendered message strings. The third parameter$message(a string) should be an array of variables like['count' => $deletedCount, 'username' => $admin['username']], and template names'email_html'and'email_plain'should be replaced with actual template identifiers.@ -6,8 +6,8 @@<packagename language="de">Automatische Löschung unbestätigter Benutzer</packagename>Bug: Release Dates Break Version History
The release date was set to
2025-01-15, which is earlier than the previous version's date of2025-03-06. Package versions should have monotonically increasing dates to maintain a proper version history timeline.@ -32,1 +38,4 @@<instruction type="database">acp/database/install_de.deinestrainreviews.autoDeleteUnconfirmedUsers.php</instruction><instruction type="language"/><instruction type="acpMenu"/><instruction type="page"/>Bug: Invalid package reference prevents installation.
The
package.xmlincludes<instruction type="option"/>directives, but nooption.xmlfile is added in this commit. Package installation will fail when it attempts to process the missing PIP file.@ -50,0 +73,4 @@// Create log entries before deletion$deletionDate = TIME_NOW;foreach ($users as $user) {DeletedUnconfirmedUserLogEditor::create([Bug: Query Binding Error: SQL LIMIT Invalid
The SQL query uses
LIMIT ?with parameter binding, but the LIMIT clause does not support parameterized placeholders in SQL. The old code usedWCF::getDB()->prepare($sql, $limit)which was WoltLab's custom API for handling LIMIT values, but the new code changed toprepareStatement()and attempted to bind LIMIT as a parameter, which is invalid and will fail at runtime.Pull request closed