Changeset 507 for trunk/Common
- Timestamp:
- Apr 1, 2013, 7:14:59 PM (12 years ago)
- Location:
- trunk/Common
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Types/File.php
r502 r507 68 68 { 69 69 parent::__construct($FormManager); 70 $this->FileDownloadURL = ' File.php';70 $this->FileDownloadURL = 'file'; 71 71 $this->DirectoryId = null; 72 72 } … … 75 75 { 76 76 $File = &$Item['Value']; 77 return('<a href="'.$this->FileDownloadURL.'? Id='.$File->Id.'">'.77 return('<a href="'.$this->FileDownloadURL.'?id='.$File->Id.'">'. 78 78 $File.'</a> ('.HumanSize($File->Size).')'); 79 79 } -
trunk/Common/Global.php
r506 r507 196 196 $System->AddModule(new Bill()); 197 197 $System->AddModule(new Finance()); 198 $System->Modules['Finance']->MainSubject = $Config['Finance']['MainSubjectId']; 199 $System->Modules['Finance']->DirectoryId = $Config['Finance']['DirectoryId']; 198 200 $System->Modules['Finance']->LoadMonthParameters(0); 199 201 RegisterFormClasses($System->FormManager); -
trunk/Common/Update.php
r505 r507 76 76 echo($Query.';<br/>'); 77 77 flush(); 78 $this->Database->query($Query);78 return($this->Database->query($Query)); 79 79 } 80 80 } -
trunk/Common/Version.php
r505 r507 1 1 <?php 2 2 3 $Revision = 50 5; // Subversion revision4 $DatabaseRevision = 50 5;5 $ReleaseTime = '2013-0 3-31';3 $Revision = 507; // Subversion revision 4 $DatabaseRevision = 507; 5 $ReleaseTime = '2013-04-01'; 6 6 7 7 ?>
Note:
See TracChangeset
for help on using the changeset viewer.