diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-03-26 18:10:55 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-03-26 18:10:55 +0400 |
| commit | 554f658c0e2b2d8c22280cede857030ada6c8ca2 (patch) | |
| tree | 5bcbff27ce04d85e686c1b19ed45b9b55d4d00c6 | |
| parent | 2196b517cd16683db12cca7c7a6da3e4a0a755ca (diff) | |
digest: fix digestinit failing on first invocation
| -rw-r--r-- | plugins/digest/init.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/digest/init.php b/plugins/digest/init.php index 2fc98b0ec..e65ae13d7 100644 --- a/plugins/digest/init.php +++ b/plugins/digest/init.php @@ -99,7 +99,7 @@ class Digest extends Plugin implements IHandler { } if ($_REQUEST["init"] == 1) { - $params["hotkeys"] = get_hotkeys_map($link); + $params["hotkeys"] = get_hotkeys_map($this->link); } $params["feeds"] = $feeds; |