Skip to content
New issue

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

Unable to change subject #5

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pfadmin_autoresponder/pfadmin_autoresponder.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class pfadmin_autoresponder extends rcube_plugin
{
public $task = 'settings';
private $sql_select = 'SELECT * FROM vacation WHERE email = %u LIMIT 1;';
private $sql_update = 'insert into vacation (email, active, subject, body, activefrom ,activeuntil) values (%u, %o, %s, %m, %f, %d) on duplicate key update active = %o, body = %m, activefrom = %f, activeuntil =%d;';
private $sql_update = 'insert into vacation (email, active, subject, body, activefrom ,activeuntil) values (%u, %o, %s, %m, %f, %d) on duplicate key update active = %o, subject = %s, body = %m, activefrom = %f, activeuntil =%d;';
private $date_format_regexp = '/^\d{4}\/\d{2}\/\d{2}$/';


Expand Down