Changeset 11 for trunk/index.php


Ignore:
Timestamp:
Aug 26, 2018, 8:53:55 PM (6 years ago)
Author:
chronos
Message:
  • Fixed: Updated parsing of Astra website.
  • Fixed: Correctly parse Amblar date.
  • Added: Allow to update only one meet source by specified id.
  • Added: Show RSS link with RSS icon under meet table.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r9 r11  
    111111    $MeetSources = new MeetSources();
    112112    $MeetSources->Database = $this->Database;
    113     $MeetSources->ParseAll();
     113    if (array_key_exists('i', $_GET)) $MeetSources->Parse($_GET['i']);
     114      else $MeetSources->Parse();
    114115  }
    115116
     
    267268    $Output .= $PageList['Output'];
    268269    $Output .= '</div>';
     270    $Output .= '<a href="'.$this->Link('/seznamka-rss/').'"><img src="'.$this->Link('/images/rss20.png').'" alt="rss20"/></a><br/>';
    269271
    270272    return($Output);
     
    324326      '</head><body>';
    325327    $Output .= $Content;
    326     $Output .= '<div class="footer">Kontakt: <a href="mailto:'.$Config['Contact'].'">'.$Config['Contact'].'</a> '.
     328    $Output .= '<br/><div class="footer">Kontakt: <a href="mailto:'.$Config['Contact'].'">'.$Config['Contact'].'</a> '.
    327329       '<a href="https://svn.zdechov.net/trac/tanec/">Zdrojový kód</a></div>';
    328330    $Output .= '</body></html>';
Note: See TracChangeset for help on using the changeset viewer.