From 904fc60f05894d6207e9ae85abda8c94283f7d28 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 21 Jul 2015 11:00:22 +0200 Subject: [PATCH] fix cli-server --- mdref/Action.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdref/Action.php b/mdref/Action.php index 68f64a7..05e007f 100644 --- a/mdref/Action.php +++ b/mdref/Action.php @@ -107,10 +107,10 @@ class Action { $pld->text = file_get_contents(ROOT."/$pld->ref"); break; case "index.css": - $this->serveStylesheet($ctl); + $this->serveStylesheet(); break; case "index.js": - $this->serveJavascript($ctl); + $this->serveJavascript(); break; default: throw new Exception(404, "$pld->ref not found"); -- 2.30.2