Skip to content

Commit c5a08ee

Browse files
committed
Removed a strict warning in listform.inc.php
1 parent c3859c5 commit c5a08ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/lib/classes/listform.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33
/*
4-
Copyright (c) 2005, Till Brehm, projektfarm Gmbh
4+
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
55
All rights reserved.
66
77
Redistribution and use in source and binary forms, with or without modification,
@@ -133,7 +133,7 @@ public function getSearchSQL($sql_where = '')
133133
$field = $i['field'];
134134

135135
//*TODO: comment = hat sich die suche ge�ndert
136-
if(isset($_REQUEST[$search_prefix.$field]) and $_REQUEST[$search_prefix.$field] != $_SESSION['search'][$list_name][$search_prefix.$field]){
136+
if(isset($_REQUEST[$search_prefix.$field]) && isset($_SESSION['search'][$list_name][$search_prefix.$field]) && $_REQUEST[$search_prefix.$field] != $_SESSION['search'][$list_name][$search_prefix.$field]){
137137
$this->searchChanged = 1;
138138
}
139139

0 commit comments

Comments
 (0)