Browse Source

Core update (good design is as little as possible)

markseu 11 years ago
parent
commit
4ffca610a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      yellow.php

+ 1 - 1
yellow.php

@@ -11,7 +11,7 @@ if(PHP_SAPI != "cli")
 } else {
 	$yellow = new Yellow();
 	$yellow->plugins->load();
-	$statusCode = $yellow->plugin("commandline", $argv[1], $argv[2], $argv[3], $argv[4], $argv[5]);
+	$statusCode = $yellow->plugin("commandline", $argv[1], $argv[2], $argv[3], $argv[4], $argv[5], $argv[6]);
 	exit($statusCode<=200 ? 0 : 1);
 }
 ?>