aboutsummaryrefslogtreecommitdiffstats
path: root/testing/litespeed/fix_php.patch
blob: 9b0d1d0c8b5175be3784d15d3eba77b3d58aa182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
--- a/dist/add-ons/snmp_monitoring/class.litespeed_snmp_bridge.php
+++ b/dist/add-ons/snmp_monitoring/class.litespeed_snmp_bridge.php
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*----------------------------------------
 LiteSpeed_Stats to SNMP bridge. Relay stats to SNMPD.
--- a/dist/add-ons/snmp_monitoring/class.litespeed_stats.php
+++ b/dist/add-ons/snmp_monitoring/class.litespeed_stats.php
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*----------------------------------------
 LiteSpeed_Stats class and subclasses. Parse Real-Time data for LiteSpeed Products
--- a/dist/add-ons/snmp_monitoring/sample.php
+++ b/dist/add-ons/snmp_monitoring/sample.php
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*--------------------------------
 assuming  following entry in /etc/snmp/snmpd.conf
--- a/dist/admin/html.open/lib/jCryption.php
+++ b/dist/admin/html.open/lib/jCryption.php
@@ -394,7 +394,7 @@
 			$bits_n = $bits_cnt % 8;
 			do {
 				$str = '';
-				mt_srand($this->_makeSeed());
+				mt_srand((int)$this->_makeSeed());
 				for ($i = 0; $i < $bytes_n; $i++) {
 					$str .= chr(sha1(mt_rand() * microtime()) & 0xff);
 				}
--- a/dist/admin/html.open/lib/ows/RealTimeStats.php
+++ b/dist/admin/html.open/lib/ows/RealTimeStats.php
@@ -224,6 +224,9 @@
         $filter = UIBase::GrabGoodInput("request", "vh_filter", "string") ;
         $sort = UIBase::GrabGoodInput("request", "vh_sort", "int") ;
 
+        $sortDesc1 = array();
+        $sortAsc2 = array();
+
         $vhosts = array() ;
         $m = array() ;
         $found = preg_match_all("/REQ_RATE \[(.+)\]: REQ_PROCESSING: ([0-9]+), REQ_PER_SEC: ([0-9\.]+), TOT_REQS: ([0-9]+)/i", $this->_rawdata, $m) ;