diff --git a/lib/API.php b/lib/API.php
index 60c6333529952c650f79427b62f6b54d30a9f58f..1168829403ef10cc3ce772faf7a80dc489af719b 100644
--- a/lib/API.php
+++ b/lib/API.php
@@ -91,6 +91,7 @@ class API {
             'show_list',
             'new_entities',
             'only_errors',
+            'only_issues',
             'url_type',
             'mod_time',
             'lang',
@@ -301,6 +302,11 @@ class API {
                     $optValue = 0;
                 }
                 break;
+            case 'only_issues':
+                if ($optValue != 1 && $optValue != 2) {
+                    $optValue = 0;
+                }
+                break;
             case 'details':
                 if ($optValue != 1) {
                     $optValue = 0;
@@ -577,11 +583,11 @@ class API {
                 $this->addStdArgument('fed_id'),
                 $this->addStdArgument('reg_auth'),
                 [
-                    'arg' => 'only_errors',
+                    'arg' => 'only_issues',
                     'required' => FALSE,
                     'default' => '0',
                     'values' => '0, 1, 2',
-                    'description' => '0 - show all; 1 - only federations with feed problems and these with feeds close to expiry; 2 - show only federations with expiry time below the set valid_sec value'],
+                    'description' => '0 - show all; 1 - only federations with feed issues and these with feeds close to expiry; 2 - show only federations with expiry time below the set valid_sec value'],
                 [
                     'arg' => 'valid_sec',
                     'required' => FALSE,
@@ -603,7 +609,7 @@ class API {
                    when no federation code is present an array of code-indexed participating federations with details as described above'
             ],
             'examples' => [
-                ['opt' => ['only_errors'=>1,], 'title' => 'only fedrations with problems',],
+                ['opt' => ['only_issues'=>1,], 'title' => 'only fedrations with issues',],
                 ['opt' => ['fed_id' => 'PIONIER-ID',],'title' => 'show status of PIONIER.Id',],
                 ['opt' => ['fed_id' => 'PIONIER-ID',], 'format' => 'json', 'title' => 'show status of PIONIER.Id in JSON',]
             ]
@@ -613,7 +619,7 @@ class API {
         }
         $edugain = new eduGAIN(5, $this->fed_id, true);
         $edugain->load_federations_state();
-        if ($this->opts['only_errors'] > 0) {
+        if ($this->opts['only_issues'] > 0) {
             $out = [];
             if ($this->opts['valid_sec'] > 0) {
                 $sec = $this->opts['valid_sec'];
@@ -621,12 +627,12 @@ class API {
                 $sec = VALIDITY_WARNING_THRESHOLD;
             }
             foreach ($edugain->FEDS as $fed) {
-                if ($this->opts['only_errors'] == 2) {
+                if ($this->opts['only_issues'] == 2) {
                     if ($fed['valid_sec'] < $sec) {
                         $out[$fed['code']] = $fed;
                     }
                 }
-                if ($this->opts['only_errors'] == 1) {
+                if ($this->opts['only_issues'] == 1) {
                     if ($fed['valid_sec'] < $sec || $fed['feed_problem'] > 0 ) {
                         $out[$fed['code']] = $fed;
                     }
diff --git a/page-logic/status.php b/page-logic/status.php
index cc187f6550a7f7f3109bcb69c0456f8ced81adc1..c4344a4f8f63c89a79ec022c87c4cd54e2e314d9 100644
--- a/page-logic/status.php
+++ b/page-logic/status.php
@@ -163,7 +163,7 @@ $data = [];
 $data['participants'] = $participants;
 $data['votingOnly'] = $votingOnly;
 $data['candidates'] = $candidates;
-if (isset($_GET['problems'])) {
+if (isset($_GET['issues'])) {
     $data['problem_switch'] = 1;
 } else {
     $data['problem_switch'] = 0;
diff --git a/templates/status.html b/templates/status.html
index 973b24db60bd84083f3cb1a890fca7ba8a8e70f5..81bc9dac06561f70b0e25911828802f8f6918fe5 100644
--- a/templates/status.html
+++ b/templates/status.html
@@ -20,7 +20,7 @@
 	</div>
         <div>
             <input type="checkbox" id="problem_filter" />
-            <label for="include_problems">Limit to current feed problems</label>
+            <label for="include_issues">Limit to current feed issues</label>
         </div>
 </div>