Facebook
From Sloppy Goose, 7 Years ago, written in Plain Text.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 361
  1.     private void filter()
  2.     {
  3.         if(tf4.getValue().equals(""))
  4.         {
  5.             this.refreshList();
  6.         }
  7.         else
  8.         {
  9.         notes.filter(tf4.getValue());
  10.         List<Notification> notificationList = notes.getList2();
  11.         notificationGrid.setItems(notificationList);
  12.         }
  13.     }