Author: Derick Rethans Date: 2007-01-25 16:55:22 +0100 (Thu, 25 Jan 2007) New Revision: 4582
Log: - Fixed reference error. Modified: scripts/render-rst-file.php Modified: scripts/render-rst-file.php =================================================================== --- scripts/render-rst-file.php 2007-01-25 15:55:01 UTC (rev 4581) +++ scripts/render-rst-file.php 2007-01-25 15:55:22 UTC (rev 4582) @@ -124,7 +124,8 @@ function addNewHeader( $component, $output, $filename ) { - $filename = array_splice( explode( '/', $filename ), -1 ); + $exploded = explode( '/', $filename ); + $filename = array_splice( $exploded, -1 ); $filename = basename( $filename[0], '.txt' ); $title = ucfirst( $filename ); $outputHeader = <<<FOO -- svn-components mailing list svn-components@lists.ez.no http://lists.ez.no/mailman/listinfo/svn-components