Browse Source

[svn r10588] replace <? by <?php

Eric Marguin 18 years ago
parent
commit
e5e69c525d

+ 1 - 1
main/inc/lib/fckeditor/editor/plugins/ImageManager/Classes/api.watermark.php

@@ -1,4 +1,4 @@
-<?
+<?php
 /**
  * Watermarking API
  * @author $Author: Brian Vaughn $ http://boynamedbri.com/  -  http://portfolio.boynamedbri.com/ -  @ devshed http://www.devshed.com/c/a/PHP/Dynamic-Watermarking-with-PHP/

+ 2 - 2
main/inc/lib/fckeditor/editor/plugins/ImageManager/editor.php

@@ -1,4 +1,4 @@
-<?
+<?php
 /**
  * The PHP Image Editor user interface.
  * @author $Author: Wei Zhuo $
@@ -229,7 +229,7 @@ $editor = new ImageEditor($manager, $IMConfig);
 			<input type="hidden" id="save_filename" value="<?php echo basename($_GET['img']); ?>" />
 	<?php } ?>
 
-	<?
+	<?php
 	$pos = strrpos($_GET['img'], ".");
 	$ext = substr($_GET['img'], $pos + 1);
 	?>

+ 9 - 9
main/inc/lib/fckeditor/editor/plugins/ImageManager/editorFrame.php

@@ -1,4 +1,4 @@
-<?
+<?php
 	/**
 	 * The frame that contains the image to be edited.
 	 * @author $Author: Wei Zhuo $
@@ -120,7 +120,7 @@
 </script>
 
 <script type="text/javascript">
-<?
+<?php
 	if ($editor->isFileSaved() == 1)
 	{
 ?>
@@ -159,22 +159,22 @@
 
 	// save message
 	var message = i18n('File saved.');
-<?
+<?php
 	if ($editor->forcedNewName != false)
 	{
 ?>
 	message += '\n' + i18n('File name was changed into ') +  '<?php echo $editor->forcedNewName; ?>';
-<?
+<?php
 	}
 ?>
 	alert(message);
-<?
+<?php
 	}
 	else if ($editor->isFileSaved() == -1)
 	{
 ?>
 	alert(i18n('File was not saved.'));
-<?
+<?php
 	}
 ?>
 
@@ -193,7 +193,7 @@
 	imagesArray = new Array();
 	// first clear all its options
 	watermarkBox.options.length = 0;
-<?
+<?php
 	foreach($IMConfig['watermarks'] as $watermark)
 	{
 		$watermarkInfo = @getImageSize($IMConfig['base_dir'] . $watermark);
@@ -279,13 +279,13 @@
 		verifyBounds();
 		dd.elements.floater.nimg.style.behavior = "url('assets/pngbehavior.htc')";
 
-<?
+<?php
 	if (isset($_GET['action']))
 	{
 		if ($_GET['action'] == "watermark")
 		{?>
 				dd.elements.floater.show();
-		<?}
+		<?php}
 	}
 ?>
 	}