diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-01-18 10:41:26 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-01-18 10:41:26 +0100 |
commit | 16c665d9fa1d3d1c5d82866a942ba8cb6db3a4ee (patch) | |
tree | 7bc660a89b379944ec0b5830a97957dfb7f74cbf | |
parent | 6686e3d1ac97a3c4d256f4e9df7f772102baed96 (diff) | |
download | rpg-16c665d9fa1d3d1c5d82866a942ba8cb6db3a4ee.tar.gz rpg-16c665d9fa1d3d1c5d82866a942ba8cb6db3a4ee.tar.bz2 |
removed data parameter in subscription_handle_post()
now the data parameter, which really is a timestamp is only handled
internally of the subscription class
-rw-r--r-- | inc/actions.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/inc/actions.php b/inc/actions.php index 911edf936..4083b0454 100644 --- a/inc/actions.php +++ b/inc/actions.php @@ -784,8 +784,7 @@ function subscription_handle_post(&$params) { $style = null; } - $data = in_array($style, array('list', 'digest')) ? time() : null; - $params = compact('target', 'style', 'data', 'action'); + $params = compact('target', 'style', 'action'); } //Setup VIM: ex: et ts=2 : |