Uwe Pross wrote:
I am going to check this on my box. Maybe we should
turn off warnings. I used a lot of tests like
if($navigation_check) {
        ...
}

I think most warnings come from these contructs. I have
a look if there is another way to avoid these warnings.

  If there's a risk that that variable doesn't exist, it
should probably be:

  if (isset($navigation_check) && $navigation_check) {
  }

  There are a variety of such checking mechanism's in PHP.

               - Chris
--
Visit the official FVWM web page at <URL:http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm-workers" in the
body of a message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]

Reply via email to