Indent fix

This commit is contained in:
Steven Sullivan 2018-02-14 12:26:03 -05:00 committed by GitHub
parent c9cf1c5a3d
commit 079ea7fe69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,15 +16,15 @@ class easy_unsubscribe extends rcube_plugin
$this->include_stylesheet('easy_unsubscribe.css');
}
public function storage_init($p)
{
$p['fetch_headers'] = trim($p['fetch_headers'] . ' ' . strtoupper('List-Unsubscribe'));
return $p;
}
public function storage_init($p)
{
$p['fetch_headers'] = trim($p['fetch_headers'] . ' ' . strtoupper('List-Unsubscribe'));
return $p;
}
public function message_headers($p)
{
if($this->message_headers_done===false)
public function message_headers($p)
{
if($this->message_headers_done===false)
{
$this->message_headers_done = true;
@ -47,6 +47,6 @@ class easy_unsubscribe extends rcube_plugin
$p['output']['subject']['html'] = 1;
}
return $p;
}
return $p;
}
}