tonches / moovrelocator

Automatically exported from code.google.com/p/moovrelocator
Other
0 stars 0 forks source link

demo use lowercase filename for class #4

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The demo script _demo/index.php use a lowercase filename to require the 
moovrelocator class while the file name in the zip file uses a uppercase first 
letter. Because of this, the script will fail to run on systems with case 
sensitive file systems.

Simple fix:

--- index.php.orig      2010-08-28 15:08:35.000000000 +0200
+++ index.php   2010-08-28 15:09:03.000000000 +0200
@@ -71,7 +71,7 @@
  * @since      File available since Release 1.0.0
  */

-require_once '../lib/moovrelocator.class.php';
+require_once '../lib/Moovrelocator.class.php';

 /**

Original issue reported on code.google.com by Sascha.Herrmann@gmail.com on 28 Aug 2010 at 1:25

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r3.

Original comment by phpflues...@googlemail.com on 10 Sep 2010 at 3:18