diff options
author | M.Gergő | 2020-04-07 00:21:24 +0200 |
---|---|---|
committer | M.Gergő | 2020-04-07 00:21:24 +0200 |
commit | eee3b4fbded1c797adb788e8710300e0b2a9c11a (patch) | |
tree | 0091f5e988289c2603452af6655b0e3184e5ac8b | |
parent | f90344c9dc1bac3ea4d4f6ebeb3c81025700227e (diff) | |
download | munin-nextcloud-eee3b4fbded1c797adb788e8710300e0b2a9c11a.tar.gz munin-nextcloud-eee3b4fbded1c797adb788e8710300e0b2a9c11a.zip |
Munin graphs for Nextcloud
-rw-r--r-- | .description | 1 | ||||
-rw-r--r-- | nextcloud_munin.php | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/.description b/.description new file mode 100644 index 0000000..ec11c6d --- /dev/null +++ b/.description @@ -0,0 +1 @@ +Munin graphs for Nextcloud server
\ No newline at end of file diff --git a/nextcloud_munin.php b/nextcloud_munin.php index 8675235..e0423f4 100644 --- a/nextcloud_munin.php +++ b/nextcloud_munin.php @@ -55,8 +55,8 @@ $time_req = time()-60*$set['diff_minutes']; $ret['data']['users_oos']['info'] = "Clients on other OS"; mysqli_set_charset($l, "utf8"); - $r = mysqli_query($l, "SELECT * FROM ".mysqli_real_escape($l, $set['db_db']).".".mysqli_real_escape($l, $set['db_prefix'])."authtoken - WHERE `last_activity` >= ".mysqli_real_escape($l, $time_req)." + $r = mysqli_query($l, "SELECT * FROM ".mysqli_real_escape_string($l, $set['db_db']).".".mysqli_real_escape_string($l, $set['db_prefix'])."authtoken + WHERE `last_activity` >= ".mysqli_real_escape_string($l, $time_req)." ORDER BY `last_activity` DESC ;" ); while ($row = mysqli_fetch_array($r, MYSQLI_ASSOC)) { |