Feature #347 - PHP short tags have been fixed, the problem was reported by Sicabol, http://www.chamilo.org/node/114

skala
Ivan Tcholakov 16 years ago
parent f5848cd9eb
commit 075ee03e61
  1. 2
      main/inc/lib/asciimath/filter.php
  2. 10
      main/inc/lib/fckeditor/editor/plugins/ImageManager/editor.php
  3. 2
      main/inc/lib/fckeditor/editor/plugins/ImageManager/manager.php
  4. 2
      main/inc/lib/fckeditor/editor/plugins/ajaxfilemanager/ajax_file_paste.php
  5. 2
      main/messaging/email_editor.php

@ -1,4 +1,4 @@
<?PHP
<?php
/////////////////////////////////////////////////////////////////////////////
// //
// NOTICE OF COPYRIGHT //

@ -140,16 +140,16 @@ body {
&nbsp;<input type="file" name="upload" id="upload"/>
<input type="hidden" name="dir" id="dir" value="<?php echo dirname($clean_img)?>" />
&nbsp;
<? if (count($IMConfig['maxWidth']) > 1){ ?>
<?php if (count($IMConfig['maxWidth']) > 1){ ?>
<label for="uploadSize" style="white-space: nowrap;">Upload Size</label>
<select name="uploadSize" id="uploadSize">
<? for ($i = 0; $i < count($IMConfig['maxWidth']); $i++){ ?>
<option value="<?=$i?>"><?=$IMConfig['maxWidth'][$i] . " x " . $IMConfig['maxHeight'][$i]?></option>
<? } ?>
<?php for ($i = 0; $i < count($IMConfig['maxWidth']); $i++){ ?>
<option value="<?php =$i ?>"><?php =$IMConfig['maxWidth'][$i] . " x " . $IMConfig['maxHeight'][$i] ?></option>
<?php } ?>
<span style="padding-left: 5px;">
(max width x height dimensions)
</span>
<? } ?>
<?php } ?>
</form>
</td>
<td>

@ -222,7 +222,7 @@ body {
<td>
<select name="uploadSize" id="uploadSize">
<?php for ($i = 0; $i < count($IMConfig['maxWidth']); $i++){ ?>
<option value="<?=$i?>"><?=$IMConfig['maxWidth'][$i] . " x " . $IMConfig['maxHeight'][$i]?></option>
<option value="<?php =$i ?>"><?php =$IMConfig['maxWidth'][$i] . " x " . $IMConfig['maxHeight'][$i] ?></option>
<?php } ?>
</select>
</td>

@ -1,4 +1,4 @@
<?
<?php
include_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc" . DIRECTORY_SEPARATOR . "config.php");
$error = '';
$fileMoved = array();

@ -105,7 +105,7 @@ Display::display_header(get_lang('SendEmail'));
</form>
</table>
<?
<?php
/* Footer */
Display::display_footer();

Loading…
Cancel
Save