diff options
author | Joe Robinson <joe@lc8n.com> | 2015-12-07 00:30:02 +0000 |
---|---|---|
committer | Joe Robinson <joe@lc8n.com> | 2015-12-07 00:30:02 +0000 |
commit | 47cb1f271fcfe28a1e8cd4184f7820e6d7f30dd0 (patch) | |
tree | 5df59e794f513a4561e63e76d3c0b861b2fdf31a /search.php | |
parent | fe8493861298b1c727e2468f736e9892fb78a42e (diff) |
Removed \! from config value to fix output
Diffstat (limited to 'search.php')
-rw-r--r-- | search.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -36,10 +36,10 @@ try { echo "blaupload-search v" . $version . "\n"; die(); } else if ($args[0] == "-h" || $args[0] == "--help") { - echo "Usage: " . $config["command"] . " [query] #[page] | "; - echo "e.g: " . $config["command"] . " intense | "; - echo $config["command"] . " intense marcus | "; - echo $config["command"] . " intense marcus #2 (returns the second page of results)\n"; + echo "Usage: !" . $config["command"] . " [query] #[page] | "; + echo "e.g: !" . $config["command"] . " intense | "; + echo "!" . $config["command"] . " intense marcus | "; + echo "!" . $config["command"] . " intense marcus #2 (returns the second page of results)\n"; die(); } |