Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8900/include
Modified Files:
Tag: branch-smarty
functions.inc.php functions_installer.inc.php
Log Message:
move the function to right place for being able to install s9y
Index: functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/Attic/functions_installer.inc.php,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- functions_installer.inc.php 6 Nov 2004 11:22:49 -0000 1.1.2.1
+++ functions_installer.inc.php 11 Nov 2004 11:15:55 -0000 1.1.2.2
@@ -819,4 +819,9 @@
}
}
}
-?>
+
+function serendipity_getRealDir($file) {
+ return preg_replace('@/include$@', '', dirname($file)) . '/';
+}
+
+?>
\ No newline at end of file
Index: functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/Attic/functions.inc.php,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -u -d -r1.1.2.1 -r1.1.2.2
--- functions.inc.php 6 Nov 2004 11:22:49 -0000 1.1.2.1
+++ functions.inc.php 11 Nov 2004 11:15:55 -0000 1.1.2.2
@@ -692,10 +692,6 @@
<?php
}
-function serendipity_getRealDir($file) {
- return preg_replace('@/include$@', '', dirname($file)) . '/';
-}
-
define("serendipity_FUNCTIONS_LOADED", true);
/* vim: set sts=4 ts=4 expandtab : */
?>
|