From e34312a75ee2287128a47282e0b7107425c37b91 Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sun, 10 Oct 2004 11:14:26 +0000 Subject: [PATCH] PHPDoc update --- lam/tests/conf-test.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/lam/tests/conf-test.php b/lam/tests/conf-test.php index c47cf5a1..cb0eaddb 100644 --- a/lam/tests/conf-test.php +++ b/lam/tests/conf-test.php @@ -19,11 +19,19 @@ $Id$ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - This test reads all preferences from lam.conf. Then it writes new values and verifies - if they were written. At last the old values are restored. */ +/** +* This test reads all preferences from lam.conf. Then it writes new values and verifies +* if they were written. At last the old values are restored. +* +* @author Roland Gruber +* @package tests +*/ + +/** access to configuration functions */ include ("../lib/config.inc"); + $conf = new Config('test'); echo ""; echo (" Current Config

");