mirror of
https://git.tt-rss.org/fox/tt-rss.git
synced 2025-10-12 03:20:59 +02:00
add startup_gettext() calls to several endpoints for unregistered users so the output would be translated based on accept-language header
This commit is contained in:
parent
642432fc39
commit
67e0cf9a37
@ -732,6 +732,8 @@ class Handler_Public extends Handler {
|
||||
}
|
||||
|
||||
function forgotpass() {
|
||||
startup_gettext();
|
||||
|
||||
header('Content-Type: text/html; charset=utf-8');
|
||||
print "<html><head><title>Tiny Tiny RSS</title>";
|
||||
|
||||
@ -825,6 +827,8 @@ class Handler_Public extends Handler {
|
||||
}
|
||||
|
||||
function dbupdate() {
|
||||
startup_gettext();
|
||||
|
||||
if (!SINGLE_USER_MODE && $_SESSION["access_level"] < 10) {
|
||||
$_SESSION["login_error_msg"] = __("Your access level is insufficient to run this script.");
|
||||
render_login_form();
|
||||
|
@ -1,3 +1,4 @@
|
||||
<?php startup_gettext(); ?>
|
||||
<html>
|
||||
<head>
|
||||
<title>Tiny Tiny RSS : Login</title>
|
||||
|
@ -15,6 +15,8 @@
|
||||
require_once "config.php";
|
||||
require_once "db.php";
|
||||
|
||||
startup_gettext();
|
||||
|
||||
$action = $_REQUEST["action"];
|
||||
|
||||
if (!init_plugins()) return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user