]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
fix short open tags
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 28 Oct 2009 22:28:04 +0000 (22:28 +0000)
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 28 Oct 2009 22:28:04 +0000 (22:28 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@459 b3834d28-1941-0410-a4f8-b48e95affb8f

data/templates/tag2tagadd.tpl.php
data/templates/tag2tagdelete.tpl.php
data/templates/tag2tagedit.tpl.php
data/templates/tagdelete.tpl.php

index 5c822234b3d4d40eb40452dc02763092f3740b3f..fcbd3728df12f61fc7b94d5abaa84f16552f91c9 100644 (file)
@@ -2,7 +2,7 @@
 $this->includeTemplate($GLOBALS['top_include']);
 ?>
 
-<form action="<?= $formaction ?>" method="post">
+<form action="<?php echo $formaction; ?>" method="post">
 
 <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/>
index 2f0715be6c005aeded2c9b393e421b43b002b667..8018374dd71c33549db31a44ba28cb2239e1179b 100644 (file)
@@ -2,7 +2,7 @@
 $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="tag2" value="<?php echo $tag2 ?>" /-->
 <p>
index 740a654c4f222b54010575fac92b2231da721b91..4745ad20df00b80b2fd5963d1f91244f7ebc0d0d 100644 (file)
@@ -2,7 +2,7 @@
 $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>
 <!--input type="hidden" name="tag1" value="<?php echo $tag1 ?>" />
 <input type="hidden" name="tag2" value="<?php echo $tag2 ?>" /-->
@@ -25,7 +25,7 @@ $this->includeTemplate($GLOBALS['top_include']);
 
 <hr />
 
-<form action="<?= $formaddaction ?>" method="post">
+<form action="<?php echo $formaddaction; ?>" method="post">
 <p><?php echo T_('Create new link')?></p>
 <p>
 <input type="text" name="tag1" value="<?php echo $tag1 ?>"/>
index 3e9744a13b2b668b222c53416af25cf59dfeb76c..e787ff5775aec100f54ddb85f98bbe974937e53f 100644 (file)
@@ -2,7 +2,7 @@
 $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>
     <input type="submit" name="confirm" value="<?php echo T_('Yes'); ?>" />