Skip to content

Commit

Permalink
Update config/config.master.php
Browse files Browse the repository at this point in the history
There was no reason to include the '/' with admin.php because it is already a part of base_url (see line 102).

This was resulting in a double '//' in the CP.
  • Loading branch information
Mike Moreau Jr committed Jan 9, 2013
1 parent 1013aaf commit 7b0fb07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/config.master.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
$env_config['site_index'] = '';
$env_config['base_url'] = $base_url . '/';
$env_config['site_url'] = $env_config['base_url'];
$env_config['cp_url'] = $env_config['base_url'] . '/admin.php';
$env_config['cp_url'] = $env_config['base_url'] . 'admin.php';
$env_config['theme_folder_path'] = $base_path . '/themes/';
$env_config['theme_folder_url'] = $base_url . '/themes/';
$env_config['emoticon_path'] = $images_url . '/smileys/';
Expand Down Expand Up @@ -275,4 +275,4 @@


/* End of file config.master.php */
/* Location: ./config/config.master.php */
/* Location: ./config/config.master.php */

0 comments on commit 7b0fb07

Please sign in to comment.