Update Api_model.php

pull/1660/head
Peter Goodhall 2022-10-11 15:05:03 +01:00
rodzic 7ed979b4b6
commit fa979a426a
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -16,7 +16,7 @@ class API_Model extends CI_Model {
function CountKeysWithNoUserID() {
$this->db->where('user_id !=', NULL);
$query = $this->db->get('CountKeysWithNoUserID');
$query = $this->db->get('api');
return $query->num_rows();
}