cvs: docweb /include init.inc.php
[email protected] ("Nuno Lopes")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvsnlopess1139169234@cvsserver> |
nlopess Sun Feb 5 19:53:54 2006 UTC
Modified files:
/docweb/include init.inc.php
Log:
as doc.php.net uses PHP 5, lets make docweb PHP 5 only and remove E_STRICT warnings
http://cvs.php.net/viewcvs.cgi/docweb/include/init.inc.php?r1=1.12&r2=1.13&diff_format=u
Index: docweb/include/init.inc.php
diff -u docweb/include/init.inc.php:1.12 docweb/include/init.inc.php:1.13
--- docweb/include/init.inc.php:1.12 Tue May 24 14:16:00 2005
+++ docweb/include/init.inc.php Sun Feb 5 19:53:54 2006
@@ -18,7 +18,7 @@
| Gabor Hojtsy <[email protected]> |
| Sean Coates <[email protected]> |
+----------------------------------------------------------------------+
-$Id: init.inc.php,v 1.12 2005/05/24 14:16:00 nlopess Exp $
+$Id: init.inc.php,v 1.13 2006/02/05 19:53:54 nlopess Exp $
*/
error_reporting(E_ALL);
@@ -73,7 +73,7 @@
// language engine
require_once('docweb_language.class.php');
- $Language =& new DocWeb_Language(LANGC);
+ $Language = new DocWeb_Language(LANGC);
// template engine
require_once('docweb_template.class.php');