2013-05-24 Ramon Novoa <rnovoa@artica.es>

* include/functions.php: Cleaned junk characters.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8206 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
ramonn 2013-05-24 10:07:10 +00:00
parent f0ce4d14bc
commit d80313c933
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2013-05-24 Ramon Novoa <rnovoa@artica.es>
* include/functions.php: Cleaned junk characters.
2013-05-24 Ramon Novoa <rnovoa@artica.es> 2013-05-24 Ramon Novoa <rnovoa@artica.es>
* include/functions.php: Merged from 4.0 branch. Removed calls * include/functions.php: Merged from 4.0 branch. Removed calls

View File

@ -1320,7 +1320,7 @@ function get_snmpwalk($ip_target, $snmp_version, $snmp_community = '', $snmp3_au
$full_oid = explode (' = ', $line); $full_oid = explode (' = ', $line);
if (isset ($full_oid[1])) { if (isset ($full_oid[1])) {
$snmpwalk[$full_oid[0]] = $full_oid[1]; $snmpwalk[$full_oid[0]] = $full_oid[1];
}ge }
} }
return $snmpwalk; return $snmpwalk;