openrat-cms

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

commit 598a59555de88c4cb612a3f6476f4afa30779f77
parent 8396d13f5fa11945e8039ed37554b573a0835a9f
Author: dankert <devnull@localhost>
Date:   Wed, 19 Nov 2003 01:27:27 +0100

Arial als Schriftart in textarea

Diffstat:
themes/default/pages/html/pageelement/edit/longtext.tpl.php | 47+++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 47 insertions(+), 0 deletions(-)

diff --git a/themes/default/pages/html/pageelement/edit/longtext.tpl.php b/themes/default/pages/html/pageelement/edit/longtext.tpl.php @@ -0,0 +1,46 @@ +<?php include( $tpl_dir.'header.tpl.php') ?> + +<!-- $Id$ --> +<center> + +<form action="<?php echo $form_action ?>" method="post" target="_self"> +<input type="hidden" name="<?php echo session_name() ?>" value="<?php echo session_id() ?>"> +<input type="hidden" name="pageaction" value="elsave"> +<input type="hidden" name="old_pageaction" value="<?php echo $old_pageaction ?>"> +<input type="hidden" name="valueid" value="<?php echo $valueid ?>"> + +<table class="main" width="90%" cellspacing="0" cellpadding="4"> + +<tr> + <th><?php echo $name ?></th> +</tr> +<tr> + <td class="help"><?php echo $desc ?><br><br><?php echo lang('HELP_LONGTEXT_WIKI') ?><br></td> +</tr> + +<tr> +<td class="f1"><br><textarea class="longtext" name="text"><?php echo $text ?></textarea></td> +</tr> + +<tr> +<td class="act"><input type="submit" class="submit" value="<?php echo lang('SAVE') ?>"></td> +</tr> + +<!-- +<tr> +<td class="help"><?php echo lang('HELP_LONGTEXT_WIKI') ?> +</td> +</tr> +--> + +</table> + +</form> + +</center> + +<script name="JavaScript"><!-- +document.forms[0].text.focus(); +//--></script> + +<?php include( $tpl_dir.'footer.tpl.php') ?>+ \ No newline at end of file