mirror of
https://github.com/YunoHost-Apps/hubzilla_ynh.git
synced 2024-09-03 19:26:21 +02:00
14 lines
260 B
PHP
14 lines
260 B
PHP
<?php
|
|
|
|
require_once('boot.php');
|
|
App::init();
|
|
|
|
$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);
|