Changeset 290
- Timestamp:
- 07/23/07 10:42:58 (1 year ago)
- Files:
-
- trunk/app/models/framework_setup.php (modified) (3 diffs)
- trunk/config/DEFAULT-config.php (modified) (3 diffs)
- trunk/config/boot.php (modified) (1 diff)
- trunk/config/environments (added)
- trunk/config/environments/development.php (moved) (moved from trunk/config/development.php)
- trunk/config/environments/production.php (moved) (moved from trunk/config/production.php)
- trunk/config/environments/testing.php (moved) (moved from trunk/config/testing.php)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/app/models/framework_setup.php
r269 r290 278 278 'user' => '%production_database_user', 279 279 'password' => '%production_database_password', 280 'options' => ' persistent' // persistent, debug, fetchmode, new280 'options' => '' // persistent, debug, fetchmode, new 281 281 ), 282 282 … … 289 289 'user' => '%development_database_user', 290 290 'password' => '%development_database_password', 291 'options' => ' persistent'291 'options' => '' 292 292 ), 293 293 … … 303 303 'user' => '%testing_database_user', 304 304 'password' => '%testing_database_password', 305 'options' => ' persistent'305 'options' => '' 306 306 ) 307 307 ); trunk/config/DEFAULT-config.php
r2 r290 10 10 'user' => '', 11 11 'password' => '', 12 'options' => ' persistent' // persistent, debug, fetchmode, new12 'options' => '' // persistent, debug, fetchmode, new 13 13 ), 14 14 … … 21 21 'user' => '', 22 22 'password' => '', 23 'options' => ' persistent'23 'options' => '' 24 24 ), 25 25 … … 35 35 'user' => '', 36 36 'password' => '', 37 'options' => ' persistent'37 'options' => '' 38 38 ) 39 39 ); trunk/config/boot.php
r283 r290 37 37 (!empty($akdb['options'])?'?'.$akdb['options']:''); 38 38 39 require_once(AK_CONFIG_DIR.DS. AK_ENVIRONMENT.'.php');39 require_once(AK_CONFIG_DIR.DS.'environments'.DS.AK_ENVIRONMENT.'.php'); 40 40 } 41 41
