Changeset 873 for trunk/block/index.php
- Timestamp:
- Apr 6, 2020, 11:17:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/block/index.php
r659 r873 22 22 23 23 $DbResult = $this->Database->query('SELECT * FROM NetworkInterface WHERE LocalIP="'.GetRemoteAddress().'"'); 24 if ($DbResult->num_rows > 0)24 if ($DbResult->num_rows > 0) 25 25 { 26 26 $Interface = $DbResult->fetch_array(); … … 30 30 $Member = $DbResult->fetch_array(); 31 31 32 if ($Member['Blocked'] == 1)32 if ($Member['Blocked'] == 1) 33 33 { 34 34 $Output .= $this->Reasons[1]; … … 38 38 $Output .= '<br/><br/>V případě problémů kontaktujte technickou podporu na telefonu 737785792<br/><br/>'; 39 39 $Output .= '</body></html>'; 40 return ($Output);40 return ($Output); 41 41 } 42 42 }
Note:
See TracChangeset
for help on using the changeset viewer.