1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
--- Symfony/Component/Locale/Tests/bootstrap.php 2012-09-20 03:42:14.000000000 -0400
+++ Symfony/Component/Locale/Tests/bootstrap.php 2012-10-20 15:25:42.739326649 -0400
@@ -10,17 +10,47 @@
*/
if (!function_exists('intl_get_error_code')) {
- require_once __DIR__.'/../Resources/stubs/functions.php';
+ $file = 'Resources/stubs/functions.php';
+ if (file_exists(__DIR__.'/../'.$file)) {
+ require_once __DIR__.'/../'.$file;
+ } else {
+ try {
+ // Try loading from include path
+ require_once 'Symfony/Component/Locale/'.$file;
+ } catch (Exception $e) {
+ // Fail silently so class not found fatal error still raised
+ }
+ }
}
spl_autoload_register(function ($class) {
if (in_array(ltrim($class, '/'), array('Collator', 'IntlDateFormatter', 'Locale', 'NumberFormatter'))) {
- require_once __DIR__.'/../Resources/stubs/'.ltrim($class, '/').'.php';
+ $file = 'Resources/stubs/'.ltrim($class, '/').'.php';
+ if (file_exists(__DIR__.'/../'.$file)) {
+ // Load from source tree
+ require_once __DIR__.'/../'.$file;
+ } else {
+ try {
+ // Try loading from include path
+ require_once 'Symfony/Component/Locale/'.$file;
+ } catch (Exception $e) {
+ // Fail silently so class not found fatal error still raised
+ }
+ }
}
- if (0 === strpos(ltrim($class, '/'), 'Symfony\Component\Locale')) {
- if (file_exists($file = __DIR__.'/../'.substr(str_replace('\\', '/', $class), strlen('Symfony\Component\Locale')).'.php')) {
- require_once $file;
+ if (0 === strpos(ltrim($class, '/'), 'Symfony\Component')) {
+ $file = substr(str_replace('\\', '/', $class), strlen('Symfony\Component')).'.php';
+ if (file_exists(__DIR__.'/../..'.$file)) {
+ // Load from source tree
+ require_once __DIR__.'/../..'.$file;
+ } else {
+ try {
+ // Try loading from incude path
+ require_once 'Symfony/Component'.$file;
+ } catch (Exception $e) {
+ // Fail silently so class not found fatal error still raised
+ }
}
}
});
|