aports/testing/litespeed/fix_php.patch
2017-03-15 14:40:33 +00:00

48 lines
1.6 KiB
Diff

--- 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) ;