You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

frame-top.php 843B

12345678910111213141516171819202122
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>DMDirc :: Reports</title>
  5. <link rel="stylesheet" type="text/css" href="http://www.dmdirc.com/res/style.css">
  6. <link rel="icon" type="image/png" href="http://www.dmdirc.com/res/favicon.png">
  7. </head>
  8. <body>
  9. <div id="container">
  10. <!-- <img id="logo" src="http://www.dmdirc.com/res/logo.png" alt="DMDirc logo"> -->
  11. <!-- <h1>DMDirc<span id="tagline">the intelligent IRC client</span></h1>-->
  12. <?PHP
  13. ob_start();
  14. define('NOINT', true); define('PREFIX', 'http://www.dmdirc.com/'); define('SUBPAGE', $_GET['page']); define('PAGE', 'dev'); require_once('/home/dmdirc/www/inc/menu.php');
  15. $data = ob_get_contents();
  16. ob_end_clean();
  17. echo str_replace('href="', 'target="_parent" href="', $data);
  18. ?>
  19. </div>
  20. </body>
  21. </html>