1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-16 03:25:57 +00:00

fix some minor typos and stuff

This commit is contained in:
Andrew Dolgov
2015-06-07 18:41:18 +03:00
parent ca5d39e866
commit 415a3b50c9
5 changed files with 8 additions and 19 deletions

View File

@@ -127,21 +127,6 @@ class Pref_Prefs extends Handler_Protected {
}
}
function getHelp() {
$pref_name = $this->dbh->escape_string($_REQUEST["pn"]);
$result = $this->dbh->query("SELECT help_text FROM ttrss_prefs
WHERE pref_name = '$pref_name'");
if ($this->dbh->num_rows($result) > 0) {
$help_text = $this->dbh->fetch_result($result, 0, "help_text");
print $help_text;
} else {
printf(__("Unknown option: %s"), $pref_name);
}
}
function changeemail() {
$email = $this->dbh->escape_string($_POST["email"]);