summaryrefslogtreecommitdiff
path: root/classes/pref/prefs.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2018-12-04 15:22:22 +0300
committerAndrew Dolgov <[email protected]>2018-12-04 15:22:22 +0300
commit31e79317b3ab958dc094ac8b6d434aa4523d8085 (patch)
treec9cd17e4ca85fea38cadf162ce86f330e3b7743f /classes/pref/prefs.php
parent7d3b5f2abd343e8e8d64a2ba6c034e47f6fd9b9f (diff)
normalize various font sizes and families between prefs & main UI
change some dialogs layout a bit to maybe become more readable
Diffstat (limited to 'classes/pref/prefs.php')
-rw-r--r--classes/pref/prefs.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/pref/prefs.php b/classes/pref/prefs.php
index 5a787bb0c..1e979d0e9 100644
--- a/classes/pref/prefs.php
+++ b/classes/pref/prefs.php
@@ -351,7 +351,7 @@ class Pref_Prefs extends Handler_Protected {
} else if (function_exists("imagecreatefromstring")) {
- print_warning(__("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP."));
+ print "<p>" . __("You will need a compatible Authenticator to use this. Changing your password would automatically disable OTP.") . "</p>";
print "<p>".__("Scan the following code by the Authenticator application:")."</p>";
@@ -515,7 +515,7 @@ class Pref_Prefs extends Handler_Protected {
$active_section = $line["section_id"];
- print "<tr><td colspan=\"3\"><h3>".$section_name."</h3></td></tr>";
+ print "<tr><td colspan=\"3\"><h2>".$section_name."</h2></td></tr>";
$lnum = 0;
}
@@ -681,8 +681,6 @@ class Pref_Prefs extends Handler_Protected {
print "<div dojoType=\"dijit.layout.AccordionPane\" title=\"".__('Plugins')."\">";
- print_notice(__("You will need to reload Tiny Tiny RSS for plugin changes to take effect."));
-
if (ini_get("open_basedir") && function_exists("curl_init") && !defined("NO_CURL")) {
print_warning("Your PHP configuration has open_basedir restrictions enabled. Some plugins relying on CURL for functionality may not work correctly.");
}
@@ -711,7 +709,7 @@ class Pref_Prefs extends Handler_Protected {
print "<table width='100%' class='prefPluginsList'>";
- print "<tr><td colspan='5'><h3>".__("System plugins")."</h3>".
+ print "<tr><td colspan='5'><h2>".__("System plugins")."</h2>".
format_notice(__("System plugins are enabled in <strong>config.php</strong> for all users.")).
"</td></tr>";
@@ -769,7 +767,7 @@ class Pref_Prefs extends Handler_Protected {
}
}
- print "<tr><td colspan='4'><h3>".__("User plugins")."</h3></td></tr>";
+ print "<tr><td colspan='4'><h2>".__("User plugins")."</h2></td></tr>";
print "<tr class=\"title\">
<td width=\"5%\">&nbsp;</td>
@@ -833,6 +831,8 @@ class Pref_Prefs extends Handler_Protected {
print "</table>";
+ //print "<p>" . __("You will need to reload Tiny Tiny RSS for plugin changes to take effect.") . "</p>";
+
print "<p><button dojoType=\"dijit.form.Button\" type=\"submit\">".
__("Enable selected plugins")."</button></p>";