summaryrefslogtreecommitdiffstats
path: root/app/app.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/app.php')
-rwxr-xr-xapp/app.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/app.php b/app/app.php
index 5cda95c..a6232cf 100755
--- a/app/app.php
+++ b/app/app.php
@@ -28,17 +28,3 @@ if (is_installed()) {
$l10n = new Simplel10n($conf['locale']);
-// this is an helper function. We will usually use that function and not Simplel10n::getString()
-function _g($str, $comment='') {
- return Simplel10n::getString($str);
-}
-
-function custom_path($file = '')
-{
- return __DIR__.'/../custom' . (!empty($file) ? '/'.$file : '');
-}
-
-function is_installed()
-{
- return file_exists(custom_path('config.yml')) && file_exists(custom_path('people.opml'));
-}