fix short open tags

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@459 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-10-28 22:28:04 +00:00
parent c95e4dce5b
commit 066085535d
4 changed files with 5 additions and 5 deletions

View file

@ -2,7 +2,7 @@
$this->includeTemplate($GLOBALS['top_include']); $this->includeTemplate($GLOBALS['top_include']);
?> ?>
<form action="<?= $formaction ?>" method="post"> <form action="<?php echo $formaction; ?>" method="post">
<p align=right" style="float:right"> <p align=right" style="float:right">
<small style="text-align:right"><?php echo T_('Note: use "=" to make synonym two tags. e.g.: france=frenchcountry')?></small><br/> <small style="text-align:right"><?php echo T_('Note: use "=" to make synonym two tags. e.g.: france=frenchcountry')?></small><br/>

View file

@ -2,7 +2,7 @@
$this->includeTemplate($GLOBALS['top_include']); $this->includeTemplate($GLOBALS['top_include']);
?> ?>
<form action="<?= $formaction ?>" method="post"> <form action="<?php echo $formaction; ?>" method="post">
<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> <!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" />
<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> <input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /-->
<p> <p>

View file

@ -2,7 +2,7 @@
$this->includeTemplate($GLOBALS['top_include']); $this->includeTemplate($GLOBALS['top_include']);
?> ?>
<form action="<?= $formdeleteaction ?>" method="post"> <form action="<?php echo $formdeleteaction; ?>" method="post">
<p><?php echo T_('Delete the link')?></p> <p><?php echo T_('Delete the link')?></p>
<!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" /> <!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" />
<input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /--> <input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /-->
@ -25,7 +25,7 @@ $this->includeTemplate($GLOBALS['top_include']);
<hr /> <hr />
<form action="<?= $formaddaction ?>" method="post"> <form action="<?php echo $formaddaction; ?>" method="post">
<p><?php echo T_('Create new link')?></p> <p><?php echo T_('Create new link')?></p>
<p> <p>
<input type="text" name="tag1" value="<?php echo $tag1 ?>"/> <input type="text" name="tag1" value="<?php echo $tag1 ?>"/>

View file

@ -2,7 +2,7 @@
$this->includeTemplate($GLOBALS['top_include']); $this->includeTemplate($GLOBALS['top_include']);
?> ?>
<form action="<?= $formaction ?>" method="post"> <form action="<?php echo $formaction; ?>" method="post">
<p><?php echo T_('Are you sure?'); ?></p> <p><?php echo T_('Are you sure?'); ?></p>
<p> <p>
<input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" /> <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" />