diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-09-08 16:31:14 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-09-08 16:31:14 +0200 |
commit | 8366f318258479ad82d044ff274ef3c98d452204 (patch) | |
tree | 2b15c828b679df3f1ac2c9ec93a5739213462c31 /application/views/welcome_message.php | |
parent | a0c049321a6470c14aed9511b5c94f7245ca71b3 (diff) | |
parent | ce592c42b6b41de2465799021a9ee71deec5b6f3 (diff) |
Merge pull request #412 from troymccormick/develop
Added CodeIgniter version information to footer of default view.
Diffstat (limited to 'application/views/welcome_message.php')
-rw-r--r-- | application/views/welcome_message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/views/welcome_message.php b/application/views/welcome_message.php index 0bf5a8d2e..d906bc8d7 100644 --- a/application/views/welcome_message.php +++ b/application/views/welcome_message.php @@ -81,7 +81,7 @@ <p>If you are exploring CodeIgniter for the very first time, you should start by reading the <a href="user_guide/">User Guide</a>.</p> </div> - <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds</p> + <p class="footer">Page rendered in <strong>{elapsed_time}</strong> seconds. <?php echo (ENVIRONMENT == 'development') ? 'CodeIgniter Version <strong>' . CI_VERSION . '</strong>' : '' ?></p> </div> </body> |