openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8b7a59caaa95a43e00eeb758a67f90ec6352085a
parent 2f079edfc13a38e1f927c1b0379a7d1dcc65764e
Author: dankert <devnull@localhost>
Date:   Tue,  4 Jan 2005 20:59:23 +0100

Einfacheres Darstellen der Dynamic-Eigenschaften

Diffstat:
themes/default/pages/html/element.tpl.php | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/themes/default/pages/html/element.tpl.php b/themes/default/pages/html/element.tpl.php @@ -272,7 +272,7 @@ $fx = fx($fx); ?> <tr> <td></td> - <td class="help"><?php echo $dynamic_class_description['description'] ?></td> + <td class="help"><?php echo $dynamic_class_description ?></td> </tr> <?php if ( count($dynamic_class_description['parameters']) > 0 ) { ?> @@ -282,9 +282,9 @@ </tr> <tr> <td></td> - <td class="help"><ul><?php foreach( $dynamic_class_description['parameters'] as $paramName=>$paramDesc ) + <td class="help"><ul><?php foreach( $dynamic_class_parameters as $paramName=>$defaultValue ) { ?> - <li><strong><?php echo $paramName ?></strong>: <?php echo $paramDesc['description'] ?><br/><?php echo lang('GLOBAL_DEFAULT') ?>: <em><?php echo $paramDesc['default'] ?></em></li> + <li><strong><?php echo $paramName ?></strong>: <em><?php echo lang('GLOBAL_DEFAULT') ?></em> = <?php echo $defaultValue ?><br/></li> <?php } ?> </ul> </td>