remove php short tags (because this relies on a php.ini setting)

skala
Patrick Cool 16 years ago
parent 61d2b73913
commit f70da88810
  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. 5
      main/messaging/email_editor.php

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

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

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

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

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