Skip to content

Commit

Permalink
Changed version to 1.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
craigk5n committed Aug 24, 2017
1 parent 935d844 commit 7561b5f
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 6 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.2.9 (24 Aug 2017)
- Fixed PHP compile error in login.php

Version 1.2.8 (11 Aug 2017)
- Cross-site scripting (XSS) fixes.
- Updates to supper PHP7. PHP 5.3 is now minimum PHP version required.
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This file lists significant changes to WebCalendar. For a more detailed
list (that includes specific bugs fixed, please look at ChangeLog).

---------------------------------------------------------------------------
Version 1.2.9 (24 Aug 2017)
- Fixed PHP compile error in login.php

Version 1.2.8 (11 Aug 2017)
- Cross-site scripting (XSS) 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.8 </td></tr>
<tr><th style="text-align: right;">WebCalendar Version:</th><td> 1.2.9 </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.8</strong></p>
<p><strong>WebCalendar Version: 1.2.9</strong></p>

<h2>Table of Contents</h2>
<ul>
Expand Down Expand Up @@ -301,7 +301,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.8</tt>).
contain the version name (such as <tt>WebCalendar-1.2.9</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.8';
$PROGRAM_DATE = '11 Aug 2017';
$PROGRAM_VERSION = 'v1.2.9';
$PROGRAM_DATE = '24 Aug 2017';
$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.8',
'WEBCAL_PROGRAM_VERSION' => 'v1.2.9',
'WEEK_START' => '0',
'WEEKEND_START' => '6',
'WEEKENDBG' => '#D0D0D0',
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 @@ -313,3 +313,5 @@ CREATE TABLE webcal_timezones (
/*upgrade_v1.2.7*/

/*upgrade_v1.2.8*/

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

/*upgrade_v1.2.8*/

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

/*upgrade_v1.2.8*/

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

/*upgrade_v1.2.8*/

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

/*upgrade_v1.2.8*/

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

/*upgrade_v1.2.8*/

/*upgrade_v1.2.9*/

0 comments on commit 7561b5f

Please sign in to comment.