1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-03 11:49:15 +00:00

new option: ALLOW_SELECT_UPDATE_METHOD (bump config ver)

This commit is contained in:
Andrew Dolgov
2008-01-25 18:50:29 +01:00
parent 16211ddbf2
commit 34459667e2
4 changed files with 25 additions and 14 deletions

View File

@@ -260,16 +260,19 @@
print "</td>";
$update_method = db_fetch_result($result, 0, "update_method");
if (ALLOW_SELECT_UPDATE_METHOD) {
print "<tr><td>".__('Update using:')."</td>";
print "<td>";
print_select_hash("update_method", $update_method, $update_methods,
"class=\"iedit\"");
print "</td>";
$update_method = db_fetch_result($result, 0, "update_method");
print "<tr><td>".__('Update using:')."</td>";
print "<td>";
print_select_hash("update_method", $update_method, $update_methods,
"class=\"iedit\"");
print "</td>";
}
$auth_login = htmlspecialchars(db_fetch_result($result, 0, "auth_login"));