onokazu
onoka****@users*****
2005年 9月 5日 (月) 03:10:25 JST
Index: xoops2jp/html/modules/system/admin/preferences/main.php diff -u xoops2jp/html/modules/system/admin/preferences/main.php:1.4.2.1 xoops2jp/html/modules/system/admin/preferences/main.php:1.4.2.2 --- xoops2jp/html/modules/system/admin/preferences/main.php:1.4.2.1 Wed Aug 24 18:40:22 2005 +++ xoops2jp/html/modules/system/admin/preferences/main.php Mon Sep 5 03:10:25 2005 @@ -1,5 +1,5 @@ <?php -// $Id: main.php,v 1.4.2.1 2005/08/24 09:40:22 nobunobu Exp $ +// $Id: main.php,v 1.4.2.2 2005/09/04 18:10:25 onokazu Exp $ // ------------------------------------------------------------------------ // // XOOPS - PHP Content Management System // // Copyright (c) 2000 XOOPS.org // @@ -262,6 +262,9 @@ if ($config[$i]->getVar('conf_valuetype') == 'array') { // this is exceptional.. only when value type is arrayneed a smarter way for this $ele = ($config[$i]->getVar('conf_value') != '') ? new XoopsFormTextArea($title, $config[$i]->getVar('conf_name'), $myts->htmlspecialchars(implode('|', $config[$i]->getConfValueForOutput())), 5, 50) : new XoopsFormTextArea($title, $config[$i]->getVar('conf_name'), '', 5, 50); + } elseif ($config[$i]->getVar('conf_valuetype') == 'textarea') { + // another exception for textarea value type.. + $ele = new XoopsFormTextArea($title, $config[$i]->getVar('conf_name'), $config[$i]->getVar('conf_value', 'e'), 5, 50); } else { $ele = new XoopsFormTextArea($title, $config[$i]->getVar('conf_name'), $myts->htmlspecialchars($config[$i]->getConfValueForOutput()), 5, 50); }