Stream.php 506 B

1234567891011121314151617
  1. <?php
  2. if (!defined('SMF')){
  3. die('Hacking attempt...');
  4. }
  5. function Stream(){
  6. global $context, $smcFunc;
  7. loadtemplate('Stream');
  8. }
  9. $context['page_title'] = $txt['Stream_PageTitle'];
  10. $context['page_title_html_safe'] = $smcFunc['htmlspecialchars'](un_htmlspecialchars($context['page_title']));
  11. $context['linktree'][] = array(
  12. 'url' => $scripturl. '?action=stream',
  13. 'name' => $txt['Stream'],
  14. );
  15. $context['youraction_Head'] = $txt['Stream'];
  16. $context['youraction_Body'] = 'Hello World';
  17. ?>