From 5349b78ad4b578d532c9c6cb530dd09c6a702b03 Mon Sep 17 00:00:00 2001
From: svncommit <devs@roundcube.net>
Date: Tue, 02 Oct 2007 20:13:32 -0400
Subject: [PATCH] Update copyright notice

---
 bin/quotaimg.php                    |    4 +-
 config/db.inc.php.dist              |    6 +-
 program/steps/mail/compose.inc      |    2 
 program/steps/mail/rss.inc          |    4 +-
 program/steps/mail/viewsource.inc   |    4 +-
 config/main.inc.php.dist            |    8 ++--
 program/include/rcube_mdb2.inc      |    4 +-
 program/steps/mail/quotadisplay.inc |    2 
 program/include/session.inc         |    2 
 program/steps/mail/list.inc         |    4 +-
 program/steps/mail/spell.inc        |    4 +-
 program/steps/error.inc             |    4 +-
 program/steps/mail/upload.inc       |    2 
 program/include/rcube_sqlite.inc    |    4 +-
 program/steps/mail/folders.inc      |    4 +-
 program/steps/mail/getunread.inc    |    2 
 program/steps/mail/get.inc          |    4 +-
 program/localization/index.inc      |    2 
 18 files changed, 33 insertions(+), 33 deletions(-)

diff --git a/bin/quotaimg.php b/bin/quotaimg.php
index 47696ef..5896eac 100644
--- a/bin/quotaimg.php
+++ b/bin/quotaimg.php
@@ -5,7 +5,7 @@
  | program/bin/quotaimg.php                                              |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -166,4 +166,4 @@
 
 genQuota($used, $quota, $width, $height);
 exit;
-?>
\ No newline at end of file
+?>
diff --git a/config/db.inc.php.dist b/config/db.inc.php.dist
index 63fa458..e142dd7 100644
--- a/config/db.inc.php.dist
+++ b/config/db.inc.php.dist
@@ -5,7 +5,7 @@
  | Configuration file for database access                                |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  +-----------------------------------------------------------------------+
@@ -16,7 +16,7 @@
 
 // PEAR database DSN for read/write operations
 // format is db_provider://user:password@host/databse
-// currentyl suported db_providers: mysql, sqlite
+// currently supported db_providers: mysql, sqlite
 
 $rcmail_config['db_dsnw'] = 'mysql://roundcube:pass@localhost/roundcubemail';
 // postgres example: 'pgsql://roundcube:pass@localhost/roundcubemail';
@@ -65,4 +65,4 @@
 
 
 // end db config file
-?>
\ No newline at end of file
+?>
diff --git a/config/main.inc.php.dist b/config/main.inc.php.dist
index 6aa6e4b..adea9b5 100644
--- a/config/main.inc.php.dist
+++ b/config/main.inc.php.dist
@@ -5,7 +5,7 @@
  | Main configuration file                                               |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  +-----------------------------------------------------------------------+
@@ -93,8 +93,8 @@
 // relative path to the skin folder
 $rcmail_config['skin_path'] = 'skins/default/';
 
-// inludes shloud be interpreted as PHP files
-$rcmail_config['skin_include_php'] = true;
+// includes should be interpreted as PHP files
+$rcmail_config['skin_include_php'] = TRUE;
 
 // use this folder to store temp files (must be writebale for apache user)
 $rcmail_config['temp_dir'] = 'temp/';
@@ -237,7 +237,7 @@
 // use this timezone to display date/time
 $rcmail_config['timezone'] = intval(date('O'))/100 - date('I');
 
-// if daylight savings are On
+// is daylight saving On?
 $rcmail_config['dst_active'] = (bool)date('I');
 
 // prefer displaying HTML messages
diff --git a/program/include/rcube_mdb2.inc b/program/include/rcube_mdb2.inc
index b88a773..acb167b 100644
--- a/program/include/rcube_mdb2.inc
+++ b/program/include/rcube_mdb2.inc
@@ -5,7 +5,7 @@
  | program/include/rcube_mdb2.inc                                        |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -567,4 +567,4 @@
 
   }  // end class rcube_db
 
-?>
\ No newline at end of file
+?>
diff --git a/program/include/rcube_sqlite.inc b/program/include/rcube_sqlite.inc
index 2b0d044..7cb5dc2 100644
--- a/program/include/rcube_sqlite.inc
+++ b/program/include/rcube_sqlite.inc
@@ -5,7 +5,7 @@
  | program/include/rcube_sqlite.inc                                      |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -74,4 +74,4 @@
   //console($str);
   }
   
-?>
\ No newline at end of file
+?>
diff --git a/program/include/session.inc b/program/include/session.inc
index 59631af..a4952d1 100644
--- a/program/include/session.inc
+++ b/program/include/session.inc
@@ -5,7 +5,7 @@
  | program/include/session.inc                                           |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev, - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/localization/index.inc b/program/localization/index.inc
index 0404615..c919dc4 100644
--- a/program/localization/index.inc
+++ b/program/localization/index.inc
@@ -5,7 +5,7 @@
  | program/localization/index.inc                                        |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev, - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/steps/error.inc b/program/steps/error.inc
index dd53306..afe5a28 100644
--- a/program/steps/error.inc
+++ b/program/steps/error.inc
@@ -5,7 +5,7 @@
  | program/steps/error.inc                                               |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -124,4 +124,4 @@
 </html>
 EOF;
 
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index c45183c..d13f71a 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/compose.inc                                        |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/steps/mail/folders.inc b/program/steps/mail/folders.inc
index 1df51cd..c7c39fb 100644
--- a/program/steps/mail/folders.inc
+++ b/program/steps/mail/folders.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/folders.inc                                        |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -54,4 +54,4 @@
 }
 
 $OUTPUT->send($commands);
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/get.inc b/program/steps/mail/get.inc
index cbf8e0c..f245296 100644
--- a/program/steps/mail/get.inc
+++ b/program/steps/mail/get.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/get.inc                                            |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -148,4 +148,4 @@
 header('HTTP/1.1 404 Not Found');
 exit;
 
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/getunread.inc b/program/steps/mail/getunread.inc
index e6b3843..ae12bc2 100644
--- a/program/steps/mail/getunread.inc
+++ b/program/steps/mail/getunread.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/getunread.inc                                      |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/steps/mail/list.inc b/program/steps/mail/list.inc
index 568f3d5..1961442 100644
--- a/program/steps/mail/list.inc
+++ b/program/steps/mail/list.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/list.inc                                           |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -64,4 +64,4 @@
 // send response
 $OUTPUT->send();
 
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/quotadisplay.inc b/program/steps/mail/quotadisplay.inc
index accecdb..223dd58 100644
--- a/program/steps/mail/quotadisplay.inc
+++ b/program/steps/mail/quotadisplay.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/quotadisplay.inc                                   |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/steps/mail/rss.inc b/program/steps/mail/rss.inc
index 80f2e5d..49d5c0e 100644
--- a/program/steps/mail/rss.inc
+++ b/program/steps/mail/rss.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/rss.inc                                            |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -114,4 +114,4 @@
 </rss>';
 
 exit;
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/spell.inc b/program/steps/mail/spell.inc
index bd03bfd..06c0508 100644
--- a/program/steps/mail/spell.inc
+++ b/program/steps/mail/spell.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/spell.inc                                          |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -61,4 +61,4 @@
 print $store;  
 exit;
 
-?>
\ No newline at end of file
+?>
diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc
index a28c3e8..339520d 100644
--- a/program/steps/mail/upload.inc
+++ b/program/steps/mail/upload.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/upload.inc                                         |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
diff --git a/program/steps/mail/viewsource.inc b/program/steps/mail/viewsource.inc
index a158bf2..c88b165 100644
--- a/program/steps/mail/viewsource.inc
+++ b/program/steps/mail/viewsource.inc
@@ -5,7 +5,7 @@
  | program/steps/mail/viewsource.inc                                     |
  |                                                                       |
  | This file is part of the RoundCube Webmail client                     |
- | Copyright (C) 2005, RoundCube Dev. - Switzerland                      |
+ | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 |
  | Licensed under the GNU GPL                                            |
  |                                                                       |
  | PURPOSE:                                                              |
@@ -37,4 +37,4 @@
   }
 
 exit;
-?>
\ No newline at end of file
+?>

--
Gitblit v1.9.1