aboutsummaryrefslogtreecommitdiffstats
path: root/event.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2002-09-24 19:03:20 +0000
committerChad Little <clittle@users.sourceforge.net>2002-09-24 19:03:20 +0000
commit27801f06818bac4a1c01fc0734ee0b63df9d6fdb (patch)
treef4aec937628802a7a6985e2c1db58531389c08ef /event.php
parent71e3870fb7658565e6cf17fea3206bff9211d981 (diff)
downloadphpicalendar-27801f06818bac4a1c01fc0734ee0b63df9d6fdb.tar.gz
phpicalendar-27801f06818bac4a1c01fc0734ee0b63df9d6fdb.tar.bz2
phpicalendar-27801f06818bac4a1c01fc0734ee0b63df9d6fdb.zip
Changed all files to reflect <?php when opening tags.
Diffstat (limited to 'event.php')
-rw-r--r--event.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/event.php b/event.php
index 61f47a3..0bd5112 100644
--- a/event.php
+++ b/event.php
@@ -1,4 +1,4 @@
-<?
+<?php
include "init.inc.php";
$event = stripslashes($event);
@@ -9,8 +9,8 @@ $event = stripslashes($event);
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
- <title><? echo "$calendar_name"; ?></title>
- <link rel="stylesheet" type="text/css" href="styles/<? echo "$style_sheet"; ?>">
+ <title><?php echo "$calendar_name"; ?></title>
+ <link rel="stylesheet" type="text/css" href="styles/<?php echo "$style_sheet"; ?>">
</head>
<body bgcolor="#eeeeee">
<table border="0" width="430" cellspacing="2" cellpadding="4">
@@ -18,19 +18,19 @@ $event = stripslashes($event);
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="calborder">
<tr height="18">
- <td align="right" valign="top" width="80" class="V12">&nbsp;<b><? echo "$event_lang"; ?>:</b></td>
+ <td align="right" valign="top" width="80" class="V12">&nbsp;<b><?php echo "$event_lang"; ?>:</b></td>
<td nowrap width="7" height="18"></td>
- <td align="left" valign="top" height="18" class="V12"><? echo "$event"; ?></td>
+ <td align="left" valign="top" height="18" class="V12"><?php echo "$event"; ?></td>
</tr>
<tr height="18">
- <td align="right" valign="top" width="80" class="V12">&nbsp;<b><? echo "$event_start_lang"; ?>:</b></td>
+ <td align="right" valign="top" width="80" class="V12">&nbsp;<b><?php echo "$event_start_lang"; ?>:</b></td>
<td width="7" height="18"></td>
- <td align="left" valign="top" height="18" class="V12"><? echo "$start"; ?></td>
+ <td align="left" valign="top" height="18" class="V12"><?php echo "$start"; ?></td>
</tr>
<tr height="18">
- <td align="right" valign="top" width="80" class="V12">&nbsp;<b><? echo "$event_end_lang"; ?>:</b></td>
+ <td align="right" valign="top" width="80" class="V12">&nbsp;<b><?php echo "$event_end_lang"; ?>:</b></td>
<td width="7" height="18"></td>
- <td align="left" valign="top" height="18" class="V12"><? echo "$end"; ?></td>
+ <td align="left" valign="top" height="18" class="V12"><?php echo "$end"; ?></td>
</tr>
</table>
</td>

© 2014-2024 Faster IT GmbH | imprint | privacy policy