Browse Source

Minor - fix php warning

Julio Montoya 6 years ago
parent
commit
5eac3a5af6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/forum/viewforumcategory.php

+ 1 - 1
main/forum/viewforumcategory.php

@@ -129,7 +129,7 @@ $logInfo = [
     'tool_id' => 0,
     'tool_id_detail' => 0,
     'action' => $action,
-    'info' => $_GET['content'],
+    'info' => isset($_GET['content']) ? $_GET['content'] : '',
 ];
 Event::registerLog($logInfo);