From bcff6f72888a138608100d4b4aebd2318a3fa128 Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Sat, 17 Aug 2013 20:48:01 +0200 Subject: [PATCH 1/2] Documentation files were renamed --- package.xml.tmpl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.xml.tmpl b/package.xml.tmpl index 5cf94f3dc..5c1144fc1 100644 --- a/package.xml.tmpl +++ b/package.xml.tmpl @@ -40,10 +40,10 @@ - - - - + + + + From 6d0f4af8dbc7e4d89a1a2d6efa75e1531c58646c Mon Sep 17 00:00:00 2001 From: Laurent Bachelier Date: Sat, 17 Aug 2013 20:50:59 +0200 Subject: [PATCH 2/2] Fall back to classic Symfony loading --- lib/command/cli.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/command/cli.php b/lib/command/cli.php index 9d1b3e8dd..09a87e415 100644 --- a/lib/command/cli.php +++ b/lib/command/cli.php @@ -13,7 +13,17 @@ { $autoload = dirname(__FILE__).'/../../autoload.php'; } -require_once $autoload; + +// Fall back to classic Symfony loading +if (!file_exists($autoload)) +{ + require_once(dirname(__FILE__).'/../autoload/sfCoreAutoload.class.php'); + sfCoreAutoload::register(); +} +else +{ + require_once $autoload; +} try {