Changeset 577
- Timestamp:
- Oct 3, 2013, 11:38:10 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Types/File.php
r548 r577 14 14 // For proper mime-type detection php-pecl-Fileinfo package should be installed on *nix systems 15 15 $FileInfo = new finfo(FILEINFO_MIME, '/usr/share/misc/magic'); 16 $Result = $FileInfo->file($ FileName);16 $Result = $FileInfo->file($this->FileName); 17 17 //$FileInfo->close(); 18 18 return($Result); -
trunk/Common/System.php
r556 r577 59 59 function ShowPage() 60 60 { 61 61 /* @var $Page Page */ 62 62 $ClassName = $this->SearchPage($this->PathItems, $this->Pages); 63 63 if($ClassName != '') -
trunk/Common/Version.php
r576 r577 1 1 <?php 2 2 3 $Revision = 57 6; // Subversion revision3 $Revision = 577; // Subversion revision 4 4 $DatabaseRevision = 574; // SQL structure revision 5 5 $ReleaseTime = '2013-10-03'; -
trunk/Modules/Chat/irc_bot.php
r548 r577 1 1 <?php 2 2 3 include_once('../ Common/Global.php');3 include_once('../../Common/Global.php'); 4 4 5 5 class IRCBot -
trunk/Modules/Finance/Manage.php
r562 r577 193 193 { 194 194 unset($Service['Id']); 195 unset($Ser ivce['ReplaceId']);196 unset($Ser ivce['Action']);195 unset($Service['ReplaceId']); 196 unset($Service['Action']); 197 197 $this->Database->insert($Table, $Service); 198 198 } else -
trunk/Modules/NetworkTopology/topologie2.php
r548 r577 1 1 <?php 2 3 include('global.php');4 2 5 3 class NetworkHostTopology -
trunk/Modules/System/System.php
r548 r577 96 96 return($Output); 97 97 } 98 } 99 98 } 100 99 101 100 class ModuleSystem extends AppModule -
trunk/Modules/TV/tkr.php
r548 r577 1 1 <?php 2 3 include_once('../Common/Global.php');4 2 5 3 class CableTVChennelListPage extends Page -
trunk/Modules/TimeMeasure/Main.php
r569 r577 1 1 <?php 2 2 3 class MainPage extends Page3 class PageMeasure extends Page 4 4 { 5 5 var $Months = array('', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'); … … 98 98 $Debug = 0; 99 99 100 foreach($this-> Config['Application']['DefaultVariables'] as $Index => $Variable)100 foreach($this->System->Config['Application']['DefaultVariables'] as $Index => $Variable) 101 101 { 102 102 if(!array_key_exists($Index, $_SESSION)) $_SESSION[$Index] = $Variable; -
trunk/Modules/WebCam/WebCam.php
r548 r577 12 12 { 13 13 $Output = '<script language="JavaScript"> 14 var ImageURL = "'.$ Config['Web']['RootFolder'].'/webcam/'.$this->System->Modules['Webcam']->ImageFileName.'";14 var ImageURL = "'.$this->System->Config['Web']['RootFolder'].'/webcam/'.$this->System->Modules['Webcam']->ImageFileName.'"; 15 15 16 16 // Force an immediate image load -
trunk/admin/index.php
r548 r577 11 11 include_once(dirname(__FILE__).'/../Common/Version.php'); 12 12 13 session_start();14 15 13 $UpdateInterface = new UpdateInterface(); 16 14 $UpdateInterface->ConfigDefinition = $ConfigDefinition;
Note:
See TracChangeset
for help on using the changeset viewer.