Fix variable access warnings

Change-Id: If5d0b9945c90d00967414d9dd745ce8dbeb6f3b6
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2015-07-09 16:39:34 -04:00
parent dd44e9c1e6
commit b802d5f4a0
4 changed files with 17 additions and 17 deletions

View File

@ -41,10 +41,10 @@ return array(
//primary DB
'openstackid' => array(
'driver' => 'mysql',
'host' => '<%= id_mysql_host %>',
'database' => '<%= id_db_name %>',
'username' => '<%= id_mysql_user %>',
'password' => '<%= id_mysql_password %>',
'host' => '<%= @id_mysql_host %>',
'database' => '<%= @id_db_name %>',
'username' => '<%= @id_mysql_user %>',
'password' => '<%= @id_mysql_password %>',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
@ -52,10 +52,10 @@ return array(
//secondary DB (OS Membership)
'os_members' => array(
'driver' => 'mysql',
'host' => '<%= ss_mysql_host %>',
'database' => '<%= ss_db_name %>',
'username' => '<%= ss_mysql_user %>',
'password' => '<%= ss_mysql_password %>',
'host' => '<%= @ss_mysql_host %>',
'database' => '<%= @ss_db_name %>',
'username' => '<%= @ss_mysql_user %>',
'password' => '<%= @ss_mysql_password %>',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
@ -85,10 +85,10 @@ return array(
'redis' => array(
'cluster' => false,
'default' => array(
'host' => '<%= redis_host %>',
'port' => <%= redis_port %>,
'host' => '<%= @redis_host %>',
'port' => <%= @redis_port %>,
'database' => 0,
'password' => '<%= redis_password %>'
'password' => '<%= @redis_password %>'
),
),
);

View File

@ -1,6 +1,6 @@
<?php
$env = $app->detectEnvironment(array(
'<%= id_environment %>' => array('<%= id_hostname %>')
'<%= @id_environment %>' => array('<%= @id_hostname %>')
));

View File

@ -4,7 +4,7 @@ return array(
* EMAIL ERROR LOG CONFIGURATION
*/
//The receiver of the mail
'to_email' => '<%= id_log_error_to_email %>',
'to_email' => '<%= @id_log_error_to_email %>',
//The sender of the mail
'from_email' => '<%= id_log_error_from_email %>'
'from_email' => '<%= @id_log_error_from_email %>'
);

View File

@ -8,8 +8,8 @@ return array(
| Set the public and private API keys as provided by reCAPTCHA.
|
*/
'public_key' => '<%= id_recaptcha_public_key %>',
'private_key' => '<%= id_recaptcha_private_key %>',
'public_key' => '<%= @id_recaptcha_public_key %>',
'private_key' => '<%= @id_recaptcha_private_key %>',
/*
|--------------------------------------------------------------------------
| Template
@ -18,5 +18,5 @@ return array(
| Set a template to use if you don't want to use the standard one.
|
*/
'template' => '<%= id_recaptcha_template %>'
'template' => '<%= @id_recaptcha_template %>'
);