- Removed include in bweb.inc.php
- Removed file array_fill.func.php from git
+++ /dev/null
-<?php
-
-// For PHP version < 4.2.0 missing the array_fill function,
-// I provide here an alternative. -Philippe
-
-function array_fill($iStart, $iLen, $vValue) {
- $aResult = array();
- for ($iCount = $iStart; $iCount < $iLen + $iStart; $iCount++) {
- $aResult[$iCount] = $vValue;
- }
- return $aResult;
-}
-
-?>
\ No newline at end of file
require_once "bgraph.inc.php";
require_once($smarty_path."Config_File.class.php");
-if (!function_exists('array_fill')) { // For PHP < 4.2.0 users
- require_once('array_fill.func.php');
-}
-
class Bweb extends DB {
var $StartDate;