]> git.pld-linux.org Git - packages/eventum.git/commitdiff
- FHS on setup/index.php
authorElan Ruusamäe <glen@pld-linux.org>
Mon, 24 Jan 2005 15:44:41 +0000 (15:44 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    eventum-paths.patch -> 1.4

eventum-paths.patch

index 1690469c11ed282bdf85a43553061ff5c9825999..0b0d201e18086deaaf89916c8b0ebf46a9ce44ec 100644 (file)
          $this->smarty->config_dir = '';\r
          $this->smarty->register_modifier("activateLinks", array('Link_Filter', 'processText'));\r
      }\r
+--- index.php  2005-01-24 17:39:51.000000000 +0200
++++ eventum-1.4/setup/index.php        2005-01-24 17:42:33.000000000 +0200
+@@ -118,7 +118,7 @@
+     if (!empty($error)) {\r
+         $errors[] = $error;\r
+     }\r
+-    $error = checkPermissions('../logs', "Directory 'logs'", TRUE);\r
++    $error = checkPermissions('/var/log/eventum', "Directory '/var/log/eventum'", TRUE);
+     if (!empty($error)) {\r
+         $errors[] = $error;\r
+     }\r
+@@ -130,7 +130,7 @@
+     if (!empty($error)) {\r
+         $errors[] = $error;\r
+     }\r
+-    $error = checkPermissions('../logs/errors.log', "File 'logs/errors.log'");\r
++    $error = checkPermissions('/var/log/eventum/errors.log', "File '/var/log/eventum/errors.log'");
+     if (!empty($error)) {\r
+         $errors[] = $error;\r
+     }\r
+@@ -199,11 +199,11 @@
+ }\r
\r
+ ini_set("include_path", '.');\r
+-include_once("../include/Smarty/Smarty.class.php");\r
++include_once('/usr/share/pear/Smarty/Smarty.class.php');
\r
+ $tpl = new Smarty();\r
+ $tpl->template_dir = '../templates/en';\r
+-$tpl->compile_dir = "../templates_c";\r
++$tpl->compile_dir = "/var/cache/eventum";
+ $tpl->config_dir = '';\r
\r
+ function replace_table_prefix($str)\r
This page took 0.067625 seconds and 4 git commands to generate.