Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- * eXtreme Message Board
- * XMB 1.9.11
- *
- * Developed And Maintained By The XMB Group
- * Copyright (c) 2001-2017, The XMB Group
- * https://www.xmbforum2.com/
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- *
- **/
- define('X_SCRIPT', 'poo.php');
- require 'header.php';
- setCanonicalLink('poo.php');
- eval('$css = "'.template('css').'";');
- eval('$header = "'.template('header').'";');
- $now = $db->time(time());// Current time
- if($db->query("UPDATE ".X_PREFIX."members SET lastvisit=".$now))
- {
- $content = "Last login for all users has been set to ". $now;
- } else $content ='Query Failed!!!!';
- eval('$footer = "'.template('footer').'";');
- echo $header, $statspage, $content, $footer;
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement