We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When upgrading this plugin, an error occurs as follows on the image:
The error occurs on file "mod/newsletter/db/upgrade.php" on this commit c4e2309 at line 297:
$sql = "UPDATE {newsletter_deliveries} nd SET nd.delivered = (SELECT ni.publishon FROM {newsletter_issues} ni WHERE ni.id = nd.issueid)";
because the "SET" clause on PostgreSQL doesn't accept "shortcuts". Removing the first "nd" solves this problem.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When upgrading this plugin, an error occurs as follows on the image:
The error occurs on file "mod/newsletter/db/upgrade.php" on this commit c4e2309 at line 297:
because the "SET" clause on PostgreSQL doesn't accept "shortcuts". Removing the first "nd" solves this problem.
The text was updated successfully, but these errors were encountered: