Update of /cvsroot/php-blog/serendipity/include/db
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11250/include/db
Modified Files:
db.inc.php mysql.inc.php mysqli.inc.php postgres.inc.php
sqlite.inc.php
Log Message:
Update and unify licensing header
Index: db.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/db/db.inc.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- db.inc.php 19 Jan 2005 10:22:13 -0000 1.3
+++ db.inc.php 26 Jan 2005 14:14:06 -0000 1.4
@@ -1,5 +1,5 @@
<?php # $Id$
-# Copyright (c) 2003-2004, Jannis Hermanns
+# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
# All rights reserved. See LICENSE file for licensing details
Index: mysqli.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/db/mysqli.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- mysqli.inc.php 19 Jan 2005 10:22:13 -0000 1.9
+++ mysqli.inc.php 26 Jan 2005 14:14:06 -0000 1.10
@@ -1,4 +1,6 @@
<?php # $Id$
+# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
+# All rights reserved. See LICENSE file for licensing details
function serendipity_db_begin_transaction(){
serendipity_db_query('start transaction');
Index: mysql.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/db/mysql.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- mysql.inc.php 19 Jan 2005 10:22:13 -0000 1.9
+++ mysql.inc.php 26 Jan 2005 14:14:06 -0000 1.10
@@ -1,4 +1,6 @@
<?php # $Id$
+# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
+# All rights reserved. See LICENSE file for licensing details
function serendipity_db_begin_transaction(){
serendipity_db_query('start transaction');
Index: postgres.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/db/postgres.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- postgres.inc.php 19 Jan 2005 10:22:13 -0000 1.9
+++ postgres.inc.php 26 Jan 2005 14:14:06 -0000 1.10
@@ -1,4 +1,6 @@
<?php # $Id$
+# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
+# All rights reserved. See LICENSE file for licensing details
function serendipity_db_begin_transaction(){
serendipity_db_query('begin work');
Index: sqlite.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/db/sqlite.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- sqlite.inc.php 19 Jan 2005 10:22:13 -0000 1.9
+++ sqlite.inc.php 26 Jan 2005 14:14:06 -0000 1.10
@@ -1,4 +1,6 @@
<?php # $Id$
+# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
+# All rights reserved. See LICENSE file for licensing details
if (!function_exists('sqlite_open')) {
@dl('sqlite.so');
|