From eb2e71c33b65581805c574c968dc801ea6496ca2 Mon Sep 17 00:00:00 2001 From: soranzo Date: Wed, 10 Jan 2007 01:25:12 +0000 Subject: [PATCH] Incrementally use ->fields for recordsets, ->f is not supported by upstream adodb. --- servers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/servers.php b/servers.php index 93e23d13..833d2d9e 100644 --- a/servers.php +++ b/servers.php @@ -3,7 +3,7 @@ /** * Manage servers * - * $Id: servers.php,v 1.5 2005/11/25 08:49:08 jollytoad Exp $ + * $Id: servers.php,v 1.6 2007/01/10 01:25:12 soranzo Exp $ */ // Include application functions @@ -34,7 +34,7 @@ $servers = $misc->getServers(true); function svPre(&$rowdata, $actions) { - $actions['logout']['disable'] = empty($rowdata->f['username']); + $actions['logout']['disable'] = empty($rowdata->fields['username']); return $actions; } -- 2.39.5