Allow to specify an uid in enum_domains
This commit is contained in:
parent
4a8c177fcb
commit
698930f5cf
|
@ -217,15 +217,17 @@ class m_dom {
|
||||||
/* ----------------------------------------------------------------- */
|
/* ----------------------------------------------------------------- */
|
||||||
/**
|
/**
|
||||||
* Retourne un tableau contenant les domaines d'un membre.
|
* Retourne un tableau contenant les domaines d'un membre.
|
||||||
|
* Par défaut le membre connecté
|
||||||
*
|
*
|
||||||
* @return array retourne un tableau indexé contenant la liste des
|
* @return array retourne un tableau indexé contenant la liste des
|
||||||
* domaines hébergés sur le compte courant. Retourne FALSE si une
|
* domaines hébergés sur le compte courant. Retourne FALSE si une
|
||||||
* erreur s'est produite.
|
* erreur s'est produite.
|
||||||
*/
|
*/
|
||||||
function enum_domains() {
|
function enum_domains($uid=-1) {
|
||||||
global $db,$err,$cuid;
|
global $db,$err,$cuid;
|
||||||
$err->log("dom","enum_domains");
|
$err->log("dom","enum_domains");
|
||||||
$db->query("select * from domaines where compte='$cuid' order by domaine asc;");
|
if ($uid == -1) { $uid = $cuid; }
|
||||||
|
$db->query("SELECT * FROM domaines WHERE compte='{$uid}' ORDER BY domaine ASC;");
|
||||||
$this->domains=array();
|
$this->domains=array();
|
||||||
if ($db->num_rows()>0) {
|
if ($db->num_rows()>0) {
|
||||||
while ($db->next_record()) {
|
while ($db->next_record()) {
|
||||||
|
|
Loading…
Reference in New Issue