repo.or.cz
/
akelos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding support for module shared model. If a module admin exists and there is a file...
[akelos.git]
/
config
/
environments
/
testing.php
blob
5543e7ba57a0302575bb643fe8c7027b9d95c111
1
<
?php
2
3
// Define constants that are used only on a testing environment
4
// See file boot.php for more info
5
6
@ini_set
(
'display_errors'
,
1
);
7
@ini_set
(
'memory_limit'
, -
1
);
8
9
$GLOBALS
[
'ak_test_db_dns'
] =
isset
(
$dsn
)
?
$dsn
:
$testing_database
;
10
11
?
>