</select></form><a href="./">♻</a> <?php } ?> <br/> <iframe style="display:inline;float:left;width:75%;height:380px;border:0px;" src="./room.php<?php if (isset($_GET['private_nick']) && isset($_GET['private_sid'])) { echo '?private_nick=' . urlencode($_GET['private_nick']) . '&private_sid=' . urlencode($_GET['private_sid']); } ?> "></iframe> <iframe style="display:inline;float:left;width:25%;height:380px;border:0px;" src="./who.php<?php if (isset($_GET['private_nick']) && isset($_GET['private_sid'])) { echo '?private_nick=' . urlencode($_GET['private_nick']) . '&private_sid=' . urlencode($_GET['private_sid']); } ?> "></iframe> <span style="clear:both;"></span> <form style="display:inline;" action="./<?php if (isset($_GET['private_nick']) && isset($_GET['private_sid'])) { echo '?private_nick=' . urlencode($_GET['private_nick']) . '&private_sid=' . urlencode($_GET['private_sid']); } ?> " method="post"><a href="javascript:void(0)" onclick="this.nextSibling.focus();">✍ </a><input type="text" name="message" size="38"></input><input type="submit" value="✓"></input></form> <?php echo '<br/><a style="clear:both;float:right;" target="top" href="../?logout=true">◀◍</a><br/><span style="float:right;">'; echo generate_footer($site_footer);
* Contains the closing of the "off-canvas-wrap" div and all content after. * * @package WordPress * @subpackage FoundationPress * @since FoundationPress 1.0.0 */ ?> </section> <div id="footer-container"> <footer id="footer"> <?php do_action('foundationpress_before_footer'); ?> <?php echo generate_footer(); ?> <?php do_action('foundationpress_after_footer'); ?> </footer> </div> <?php if (!get_theme_mod('wpt_mobile_menu_layout') || get_theme_mod('wpt_mobile_menu_layout') == 'offcanvas') { ?> <a class="exit-off-canvas"></a> <?php } ?>
break; case 200: case 400: case 401: case 403: case 404: case 500: if ($status != 200) { http_response_code($status); } if (!$suppress_skin) { echo generate_header($response['title'], $request, $response['js'], $response['css'], $response['onload']); } echo $response['body']; if (!$suppress_skin) { echo generate_footer($request); } break; default: http_response_code(500); echo 'INVALID RESPONSE CODE'; break; } if ($log_not_found) { $path = $request['path']; if (strlen($path) > 200) { $path = substr($path, 0, 200); } $tracker = sql_query_item("SELECT * FROM `not_found_tracker` WHERE `url` = '" . sql_sanitize_string($path) . "' LIMIT 1"); if ($tracker == null) { sql_insert('not_found_tracker', array('url' => $path, 'hits' => 1));