diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-01 17:58:23 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-09-08 09:01:01 +0200 |
commit | 57c273b2dae918e1b007c1f1d1cd37ec9f6fb248 (patch) | |
tree | c573c5279177d6bf19d76a642e7e677f3f88f535 /lib/private/notification/notification.php | |
parent | d04021b1ac8e9717adb39111622a7d024d90502d (diff) | |
download | nextcloud-server-57c273b2dae918e1b007c1f1d1cd37ec9f6fb248.tar.gz nextcloud-server-57c273b2dae918e1b007c1f1d1cd37ec9f6fb248.zip |
Fix closures and adding parsed Actions
Diffstat (limited to 'lib/private/notification/notification.php')
-rw-r--r-- | lib/private/notification/notification.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/notification/notification.php b/lib/private/notification/notification.php index 17246ddef32..f5171f150c6 100644 --- a/lib/private/notification/notification.php +++ b/lib/private/notification/notification.php @@ -393,7 +393,7 @@ class Notification implements INotification { if (!$action->isValidParsed()) { throw new \InvalidArgumentException('The given parsed action is invalid'); } - $this->actions[] = $action; + $this->actionsParsed[] = $action; return $this; } |