Skip to content

Commit

Permalink
Release 1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Feb 22, 2013
1 parent b3e11ec commit 4f3c36c
Show file tree
Hide file tree
Showing 13 changed files with 27 additions and 8 deletions.
3 changes: 1 addition & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
$Id$

Version 1.2.7 (?? ??? 2013)
Version 1.2.7 (22 Feb 2013)
- Security fix: Do not show the reason for a failed login (i.e. "no such user")
- Security fix: Escape HTML characters in category name.
- Security fix: Check all passed in fields (either via HTML form or via
URL parameter) for certain malicious tags (script, embed, etc.) and
generate fatal error if found.


Version 1.2.6 (07 Jan 2013)
- Fixed bug [ 3577712 ] - typo in upcoming.php
- Bug fix: ajax.php error on undefined function require_valide_referring_url
Expand Down
7 changes: 7 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ http://webcalendar.cvs.sourceforge.net/*checkout*/webcalendar/webcalendar/Change

---------------------------------------------------------------------------

Version 1.2.7 (22 Jan 2013)
- Security fix: Do not show the reason for a failed login (i.e. "no such user")
- Security fix: Escape HTML characters in category name.
- Security fix: Check all passed in fields (either via HTML form or via
URL parameter) for certain malicious tags (script, embed, etc.) and
generate fatal error if found.

Version 1.2.6 (07 Jan 2013)
- Fix for "undefined function require_valide" bug
- Other minor bug fixes.
Expand Down
2 changes: 1 addition & 1 deletion UPGRADING.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<h1>WebCalendar Upgrading Notes</h1>

<table border="0" style="margin-left: 50px;">
<tr><th style="text-align: right;">WebCalendar Version:</th><td> 1.2.6 </td></tr>
<tr><th style="text-align: right;">WebCalendar Version:</th><td> 1.2.7 </td></tr>
<tr><th valign="top" style="text-align: right;">Document Version:</th><td> $Revision$ <br/> $Date$</td>
</table>

Expand Down
4 changes: 2 additions & 2 deletions docs/WebCalendar-SysAdmin.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
</head>
<body>
<h1>WebCalendar System Administrator's Guide</h1>
<p><strong>WebCalendar Version: 1.2.b1</strong></p>
<p><strong>WebCalendar Version: 1.2.7</strong></p>

<h2>Table of Contents</h2>
<ul>
Expand Down Expand Up @@ -306,7 +306,7 @@ <h2>File Unpacking</h2>
your web server will find it. (See your web server documentation for information.)</p>
<p>By default, unpacking WebCalendar will create its own directory
when you unpack it. The new directory name will typically
contain the version name (such as <tt>WebCalendar-1.2.1</tt>).
contain the version name (such as <tt>WebCalendar-1.2.7</tt>).
You can rename this directory after unpacking the files if you
prefer a directory name like <tt>calendar</tt> or <tt>webcalendar</tt>.
Keep in mind that unless you remap the directory (via your web server's
Expand Down
4 changes: 2 additions & 2 deletions includes/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ function do_config ( $fileLoc ) {
$PROGRAM_URL, $PROGRAM_VERSION, $readonly, $run_mode, $settings, $single_user,
$single_user_login, $TROUBLE_URL, $use_http_auth, $user_inc;

$PROGRAM_VERSION = 'v1.2.6';
$PROGRAM_DATE = '07 Jan 2013';
$PROGRAM_VERSION = 'v1.2.7';
$PROGRAM_DATE = '22 Feb 2013';
$PROGRAM_NAME = 'WebCalendar ' . "$PROGRAM_VERSION ($PROGRAM_DATE)";
$PROGRAM_URL = 'http://www.k5n.us/webcalendar.php';
$TROUBLE_URL = 'docs/WebCalendar-SysAdmin.html#trouble';
Expand Down
2 changes: 1 addition & 1 deletion install/default_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
'USER_RSS_ENABLED' => 'N',
'USER_SEES_ONLY_HIS_GROUPS' => 'Y',
'USER_SORT_ORDER' => 'cal_lastname, cal_firstname',
'WEBCAL_PROGRAM_VERSION' => 'v1.2.6',
'WEBCAL_PROGRAM_VERSION' => 'v1.2.7',
'WEEK_START' => '0',
'WEEKEND_START' => '6',
'WEEKENDBG' => '#D0D0D0',
Expand Down
1 change: 1 addition & 0 deletions install/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* same value (e.g. "v1.0.0") that was defined above.
* - Update the version/date in ChangeLog and NEWS files.
* - Update UPGRADING.html documentation.
* - Update docs/WebCalendar-SysAdmin.html documentation.
*
* ABOUT VERSION NUMBERS:
* From now on, we should only be using "vN.N.N" format for versions.
Expand Down
2 changes: 2 additions & 0 deletions install/sql/upgrade-db2.sql
Original file line number Diff line number Diff line change
Expand Up @@ -309,3 +309,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/
2 changes: 2 additions & 0 deletions install/sql/upgrade-ibase.sql
Original file line number Diff line number Diff line change
Expand Up @@ -324,3 +324,5 @@ CREATE INDEX IWEBCAL_TIMEZONESNEWINDEX ON WEBCAL_TIMEZONES(TZID);
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/
2 changes: 2 additions & 0 deletions install/sql/upgrade-mssql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/
2 changes: 2 additions & 0 deletions install/sql/upgrade-mysql.sql
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/
2 changes: 2 additions & 0 deletions install/sql/upgrade-oracle.sql
Original file line number Diff line number Diff line change
Expand Up @@ -310,3 +310,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/
2 changes: 2 additions & 0 deletions install/sql/upgrade-postgres.sql
Original file line number Diff line number Diff line change
Expand Up @@ -328,3 +328,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.5*/

/*upgrade_v1.2.6*/

/*upgrade_v1.2.7*/

0 comments on commit 4f3c36c

Please sign in to comment.