Update of /cvsroot/webnotes/webnotes/themes
In directory usw-pr-cvs1:/tmp/cvs-serv29848/themes
Modified Files:
theme_api.php
Log Message:
- Set the PHP minimum requirement to 4.0.6
- Removed the definition of DIRECTORY_SEPARATOR
- Partial support for themes ... still need to support the add form.
- All functions are now moved out of api.php.
- Some to do work was moved out of the roadmap and into http://webnotes.sf.net/mantis (bug tracker).
Index: theme_api.php
===================================================================
RCS file: /cvsroot/webnotes/webnotes/themes/theme_api.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- theme_api.php 5 Sep 2002 06:25:20 -0000 1.2
+++ theme_api.php 5 Sep 2002 17:30:30 -0000 1.3
@@ -20,7 +20,8 @@
# The path to the api.php is calculated assume this file resides in a sub-directory
# under themes. For example, themes/phpnet/.
- require_once ( dirname( dirname( dirname( __FILE__ ) ) ) . DIRECTORY_SEPARATOR . 'api.php' );
+ require_once ( dirname( dirname( dirname( __FILE__ ) ) ) . DIRECTORY_SEPARATOR .
+ 'core' . DIRECTORY_SEPARATOR . 'api.php' );
# Identifies the version of the theme. This will allow the phpWebNotes
# engine in the future to support themes that are designed for older
|