From d78afeef3efb084afdd8d849f7b38a837b1cce30 Mon Sep 17 00:00:00 2001 From: Ermal Date: Fri, 10 Dec 2010 12:30:09 +0000 Subject: Prepend package name to functions and use require_once instead of require. --- config/tftp/tftp.inc | 8 ++++---- config/tftp/tftp_files.tmp | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/config/tftp/tftp.inc b/config/tftp/tftp.inc index 9d06573c..e19d68bb 100644 --- a/config/tftp/tftp.inc +++ b/config/tftp/tftp.inc @@ -32,7 +32,7 @@ */ -function guid() +function tftp_guid() { if (function_exists('com_create_guid')){ return com_create_guid(); @@ -53,7 +53,7 @@ function guid() //echo guid(); -function pkg_is_service_running($servicename) +function tftp_pkg_is_service_running($servicename) { exec("/bin/ps ax | awk '{ print $5 }'", $psout); array_shift($psout); @@ -68,7 +68,7 @@ function pkg_is_service_running($servicename) } } -function byte_convert( $bytes ) { +function tftp_byte_convert( $bytes ) { if ($bytes<=0) return '0 Byte'; @@ -293,4 +293,4 @@ function tftp_deinstall_command() } -?> \ No newline at end of file +?> diff --git a/config/tftp/tftp_files.tmp b/config/tftp/tftp_files.tmp index 3141b8fa..a55e92c6 100644 --- a/config/tftp/tftp_files.tmp +++ b/config/tftp/tftp_files.tmp @@ -28,8 +28,8 @@ POSSIBILITY OF SUCH DAMAGE. */ -require("guiconfig.inc"); -require("/usr/local/pkg/tftp.inc"); +require_once("guiconfig.inc"); +require_once("/usr/local/pkg/tftp.inc"); $filename = $_GET['filename']; if (($_GET['a'] == "download") && $_GET['t'] == "backup") { @@ -202,7 +202,7 @@ if ($savemsg) { if ($file != "." && $file != "..") { $tftp_filesize = filesize('/tftpboot/'.$file); - $tftp_filesize = byte_convert($tftp_filesize); + $tftp_filesize = tftp_byte_convert($tftp_filesize); echo "\n"; echo " \n"; -- cgit v1.2.3