aboutsummaryrefslogtreecommitdiffstats
path: root/util/typohelper.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-03-28 17:24:11 -0700
committerFriendika <info@friendika.com>2011-03-28 17:24:11 -0700
commit00b5f6f8a1bdc004380fd75dd5e6dc52117dd6d7 (patch)
treef162f58200cb4bb965c680eb79f39fc5027380d2 /util/typohelper.php
parent0f8bcacfdd6e724800e3fe2f0cf4ec300a6c289b (diff)
downloadvolse-hubzilla-00b5f6f8a1bdc004380fd75dd5e6dc52117dd6d7.tar.gz
volse-hubzilla-00b5f6f8a1bdc004380fd75dd5e6dc52117dd6d7.tar.bz2
volse-hubzilla-00b5f6f8a1bdc004380fd75dd5e6dc52117dd6d7.zip
added comments, make typo checker work with redefined plural string functions
Diffstat (limited to 'util/typohelper.php')
-rw-r--r--util/typohelper.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/util/typohelper.php b/util/typohelper.php
new file mode 100644
index 000000000..589702a02
--- /dev/null
+++ b/util/typohelper.php
@@ -0,0 +1,11 @@
+<?php
+
+$str = <<< EOT
+ error_reporting(E_ERROR | E_WARNING | E_PARSE );
+ ini_set('display_errors', '1');
+ ini_set('log_errors','0');
+EOT;
+
+ $str .= str_replace('<?php', '', file_get_contents($argv[1]));
+
+ eval($str);