Changeset 572
- Timestamp:
- Sep 27, 2013, 12:54:43 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/Form/Types/Date.php
r571 r572 15 15 $Parts = getdate($Item['Value']); 16 16 17 $Output = $Parts['mday'].'. '.$Parts['mon'].''.$Parts['year'];17 $Output = $Parts['mday'].'.'.$Parts['mon'].'.'.$Parts['year']; 18 18 return($Output); 19 19 } -
trunk/Common/Version.php
r570 r572 1 1 <?php 2 2 3 $Revision = 57 0; // Subversion revision4 $DatabaseRevision = 5 65; // SQL structure revision3 $Revision = 571; // Subversion revision 4 $DatabaseRevision = 571; // SQL structure revision 5 5 $ReleaseTime = '2013-09-26'; -
trunk/Modules/Network/Network.php
r554 r572 176 176 'Interfaces' => array('Type' => 'TInterfaceList', 'Caption' => 'Rozhraní', 'Default' => ''), 177 177 'MapPosition' => array('Type' => 'TMapPosition', 'Caption' => 'Pozice na mapě', 'Default' => '0', 'Null' => true), 178 'LoginName' => array('Type' => 'String', 'Caption' => 'Přihlašovací jméno', 'Default' => '', 'Null' => true), 179 'LoginPassword' => array('Type' => 'String', 'Caption' => 'Přihlašovací heslo', 'Default' => '', 'Null' => true), 178 180 ), 179 181 'Actions' => array( -
trunk/admin/Updates.php
r565 r572 369 369 } 370 370 371 function UpdateTo571($Manager) 372 { 373 $Manager->Execute('ALTER TABLE `NetworkDevice` ADD `LoginName` VARCHAR( 255 ) NOT NULL , 374 ADD `LoginPassword` VARCHAR( 255 ) NOT NULL ;'); 375 } 376 377 371 378 $Updates = array( 372 379 491 => array('Revision' => 493, 'Function' => 'UpdateTo493'), … … 389 396 550 => array('Revision' => 551, 'Function' => 'UpdateTo551'), 390 397 551 => array('Revision' => 565, 'Function' => 'UpdateTo565'), 398 565 => array('Revision' => 571, 'Function' => 'UpdateTo571'), 391 399 ); -
trunk/temp/FioCVSToSQL.php
r548 r572 2 2 3 3 include('../Common/Global.php'); 4 $BVId = 127;5 $PRId = 14;4 $BVId = 216; 5 $PRId = 31; 6 6 $Output = ''; 7 7 $Content = file_get_contents('Pohyby_na_účtu-2600134781.csv');
Note:
See TracChangeset
for help on using the changeset viewer.