openbsd-ports/www/webacula/patches/patch-html_index_php
ajacoutot d043b8d6fc Update to webacula-5.5.1 and add a couple of saner defaults to that it
works out of the box with our current version of bacula.

ok sthen@
2012-02-01 12:59:06 +00:00

22 lines
882 B
Plaintext

$OpenBSD: patch-html_index_php,v 1.5 2012/02/01 12:59:06 ajacoutot Exp $
--- html/index.php.orig Sat Sep 10 22:22:55 2011
+++ html/index.php Tue Jan 31 17:35:49 2012
@@ -19,7 +19,7 @@
*/
define('WEBACULA_VERSION', '5.5.1' . ', build 2011.09.07');
-define('BACULA_VERSION', 12); // Bacula Catalog version
+define('BACULA_VERSION', 14); // Bacula Catalog version
define('ROOT_DIR', dirname(dirname(__FILE__)) );
define('CACHE_DIR', ROOT_DIR.'/data/cache' );
@@ -38,6 +38,8 @@ if ( APPLICATION_ENV == 'development') {
// PATH_SEPARATOR ":"
set_include_path('.' . PATH_SEPARATOR . dirname(__FILE__) . '/../library' . PATH_SEPARATOR . '../application/models/' .
PATH_SEPARATOR . '../application/forms/' .
+ PATH_SEPARATOR . '/zendframework' .
+ PATH_SEPARATOR . '/var/www/zendframework' .
PATH_SEPARATOR . get_include_path() );
include "Zend/Loader.php";