diff options
Diffstat (limited to 'routers/router.php')
-rw-r--r-- | routers/router.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/routers/router.php b/routers/router.php index d786f94..bf5c466 100644 --- a/routers/router.php +++ b/routers/router.php @@ -52,7 +52,9 @@ abstract class Router { $data = ''; foreach ($commands as $selected) { - $data .= $auth->send_command($selected); + $data .= '<span class="label label-primary">'.$selected.'</span>'; + $data .= '<pre class="pre-scrollable">'.$auth->send_command($selected). + '</pre>'; log_to_file('[client: '.$this->requester.'] '.$this->config['host']. '> '.$selected); } |