mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 13:35:56 +00:00
fix warning in profile edit dialog
This commit is contained in:
@@ -1248,7 +1248,7 @@ class Pref_Prefs extends Handler_Protected {
|
||||
|
||||
print "<td><input onclick='Tables.onRowChecked(this);' dojoType='dijit.form.CheckBox' type='checkbox'></td>";
|
||||
|
||||
if ($_SESSION["profile"] == $line["id"]) {
|
||||
if (isset($_SESSION["profile"]) && $_SESSION["profile"] == $line["id"]) {
|
||||
$is_active = __("(active)");
|
||||
} else {
|
||||
$is_active = "";
|
||||
|
||||
Reference in New Issue
Block a user