Skip to content
Snippets Groups Projects
Commit 5a42a864 authored by david_williams's avatar david_williams
Browse files

317722 - many "warnings" in download page scripts

parent 5a0fea5c
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,9 @@
// todo: unsure if can handle filenames that are URLs?
// handy constant to compute file size in megabytes
include_once('buildvariables.php');
function fileSizeInMegs($filename) {
$onemeg=1024*1024;
$zipfilesize=filesize($filename);
......
......@@ -5,6 +5,8 @@
// from mulitiple files, by using
// include('buildvariables.php');
include_once("miscUtil.php");
$buildBranch="@buildBranch@";
$build="@build@";
......
......@@ -7,8 +7,8 @@
//ini_set("display_errors", "true");
//error_reporting (E_ALL);
include("miscUtil.php");
include('buildvariables.php');
include_once("miscUtil.php");
include_once('buildvariables.php');
// our summary results handling requires php 5 (for simple xml file loading)
// so, if not php 5, just don't display any summary results
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment