mirror of https://github.com/friendica/friendica
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
218 B
12 lines
218 B
12 years ago
|
<?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);
|