Fixed a few broken links and a parse error

This commit is contained in:
jengo 2000-08-19 03:51:24 +00:00
parent c34644200b
commit 204e75a25a
3 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@
</a>
</td>
<td align="right">
<form action="<?php echo $phpgw_info["server"]["app_root"]; ?>/search.php">
<form action="search.php">
<?php echo $phpgw->session->hidden_var(); ?>
<input type="hidden" name="from" value="<?php echo $PHP_SELF; ?>">
<input type="hidden" name="date" value="<?php echo $date; ?>">

View File

@ -16,17 +16,16 @@
$phpgw_flags["currentapp"] = "calendar";
include("../header.inc.php");
if (! $keywords) {
// If we reach this it becuase they didn't search for anything,
// attempt to send them back to where they where.
Header("Location: $from?sessionid=" . $phpgw->session->id . "&date=$date"
. "month=$month&day=$day&year=$year");
} else { // else keywords
$phpgw->common->header();
}
$error = "";
include("../header.inc.php");
$error = "";
if (strlen($keywords) == 0)
$error = lang_calendar("You must enter one or more search keywords.");
@ -88,10 +87,9 @@
echo $error;
}
} // End else keywords
?>
<P>
<?php
include($phpgw_info["server"]["api_dir"] . "/footer.inc.php");
?>

View File

@ -12,8 +12,10 @@
friendly version.
- Fixed a problem with the groups directory not being deleted.
- Fixed a problem with not being able to add users to a group.
- Fixed bad link in calendar
- Fixed bad links in calendar
- Added feature to be able to remove users from a group automaticly
- changetheme.php will now read the files in the directory. You no longer
need to edit it to add themes
[08152000] - Fixed a problem with the calendar not showing the months in the users
langague preference.