- Timestamp:
- Apr 14, 2022, 9:49:44 PM (3 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Meet/Import/Amblar.php
r63 r64 112 112 } 113 113 } 114 115 -
trunk/Modules/Meet/Meet.php
r63 r64 12 12 include_once(dirname(__FILE__).'/Import/Eso.php'); 13 13 include_once(dirname(__FILE__).'/Import/Ella.php'); 14 include_once(dirname(__FILE__).'/Import/MgDance.php'); 14 15 15 16 abstract class Gender … … 300 301 'kolín' => 'Kolín', 301 302 'kroměříž' => 'Kroměříž', 303 'hradec králové' => 'Hradec Králové', 302 304 ); 303 305 … … 354 356 else if ($Method == 'eso') $Source = new MeetSourceEso(); 355 357 else if ($Method == 'ella') $Source = new MeetSourceElla(); 358 else if ($Method == 'mgdance') $Source = new MeetSourceMgDance(); 356 359 else { 357 360 $Output .= 'Unsupported parse method: '.$Method.'<br/>'; -
trunk/View.php
r63 r64 58 58 while ($Page) 59 59 { 60 $Output = ' > <a href="'.$this->System->Link($ScriptName).'/">'.$Page-> ShortTitle.'</a>'.$Output;60 $Output = ' > <a href="'.$this->System->Link($ScriptName).'/">'.$Page->Title.'</a>'.$Output; 61 61 62 62 if (class_exists($Page->ParentClass))
Note:
See TracChangeset
for help on using the changeset viewer.