Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2013
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. */
  2.  
  3. /**
  4. * @ignore
  5. */
  6.  
  7. define('IN_PHPBB', true);
  8. $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
  9. $phpEx = substr(strrchr(__FILE__, '.'), 1);
  10. include($phpbb_root_path . 'common.' . $phpEx);
  11. include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
  12.  
  13. // Start session management
  14. $user->session_begin();
  15. $auth->acl($user->data);
  16. $user->setup();
  17.  
  18. page_header('Película Añadida');
  19.  
  20. $template->set_filenames(array(
  21.     'body' => 'app.html',
  22. ));
  23.  
  24. make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
  25. page_footer();
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement