| /Server/GenIndex/DirMetadata.php |
|---|
| 46,11 → 46,11 |
| // Vyhoď komentáře (po řádcích) |
| foreach($File as $Key => $Line) |
| if (str_starts_with(ltrim($Line), '//')) |
| if (substr(ltrim($Line), 0, 2) == '//') |
| unset($File[$Key]); |
| // Sestav z pole jeden retězec |
| $File = implode('', $File); |
| $File = implode($File); |
| // Vyhledej v souboru informace |
| $PatternKey = '\[(?P<Key>[a-z,A-Z,0-9,\-\_\.]+)\]'; |