We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7a54fbd + 0c0dfe5 commit 489d941Copy full SHA for 489d941
builder/builder.php
@@ -5,7 +5,7 @@
5
header("Content-type: text/html; charset=utf-8");
6
7
$resname = "../EMT.php";
8
- $action = $_REQUEST['action'];
+ $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : '';
9
if($action == "")
10
{
11
$phpself = $_SERVER['PHP_SELF'];
@@ -102,7 +102,6 @@ function phpfile_read($file, $all = false)
102
fputs($fp, $s);
103
}
104
105
- fprintf($fp, "?>");
106
fclose($fp);
107
108
echo "Сгенерирован скрипт типографа для PHP<br />";
lib/fs.php
@@ -2,7 +2,7 @@
2
3
class FS
4
- function list_only_files($dir, $template = "")
+ public static function list_only_files($dir, $template = "")
$list = array();
$ddir = $dir;
0 commit comments