diff options
-rw-r--r-- | blasource.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/blasource.php b/blasource.php index 49e5447..9dc4025 100644 --- a/blasource.php +++ b/blasource.php @@ -12,8 +12,9 @@ // 0.2.1 Fixed -l (showing too many results) and -r (Not showing text of removed line // 0.2.2 Changed -new to --add // 0.2.3 Updated help added --WORD to all -? parameters. + // 0.2.4 Fixed syntaxtical error - $version = "BlaSource Version: 0.2.3"; + $version = "BlaSource Version: 0.2.4"; // get the input $stdin = read_stdin(); @@ -102,7 +103,7 @@ $i = sizeof($stdin); break; case "-v": - case "--version" + case "--version": $out = $version; $i = sizeof($stdin); break; |