'.$LANG['BADPASS'].''; $log = file_exists(LOG_DIR) ? unserialize(file_get_contents(LOG_DIR)) : array(); if (isset($log[$_SERVER['REMOTE_ADDR']]) === false) { $log[$_SERVER['REMOTE_ADDR']] = array('num' => 0, 'time' => 0); } $log[$_SERVER['REMOTE_ADDR']]['num'] += 1; $log[$_SERVER['REMOTE_ADDR']]['time'] = time(); file_put_contents(LOG_DIR, serialize($log)); } } else $content='
'.$value.'
'; if ($_POST['type']=="js") { print($content); exit; } } } else if (substr($file,0,1)==":") { $content=specialurl($file); } else if ($filedetail['extension']=="md") { $content=getcontent($file); } else if ($filedetail['extension']!="" && strpos(ALLOWED_EXT, $filedetail['extension']) !== false) { if (file_exists(CONTENT_DIR . $file)) { if ($filedetail['extension']=="css") header("Content-type: text/css"); print file_get_contents(CONTENT_DIR . $file); } else { http_response_code(404); $content=getcontent("/special/404.md"); } exit; } else { $content=getcontent("/special/404.md"); } ?>