This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
friendica
/
friendica
mirror of
https://github.com/friendica/friendica.git
Watch
1
Star
2
Fork
1
Code
Issues
Releases
49
Wiki
Activity
Browse Source
Use $argv instead of $_SERVER['argv']
pull/4718/head
Hypolite Petovan
2 years ago
parent
8a2d41e53f
commit
3b81c66150
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
bin/console.php
+ 1
- 1
bin/console.php
View File
@ -6,4 +6,4 @@ include_once dirname(__DIR__) . '/boot.php';
$a
=
new
Friendica\App
(
dirname
(
__DIR__
));
\Friendica\BaseObject
::
setApp
(
$a
);
(
new
Friendica\Core\Console
())
->
execute
();
(
new
Friendica\Core\Console
(
$argv
))
->
execute
();
Write
Preview
Loading…
Cancel
Save