Finally implemented repeated expenses properly. [skip ci]

This commit is contained in:
James Cole
2014-12-30 15:17:01 +01:00
parent c0c37eec7b
commit b451e207e2
17 changed files with 648 additions and 474 deletions

View File

@@ -32,6 +32,11 @@ class HelpController extends BaseController
} catch (ErrorException $e) {
$content = '<p>There is no help for this route.</p>';
}
if (strlen($content) == 0) {
$content = '<p>There is no help for this route.</p>';
}
\Log::debug('Found help for ' . $route);
\Log::debug('Help text length is ' . strlen($content));
$helpText = \Michelf\Markdown::defaultTransform($content);
$helpTitle = $route;