summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-09-10 21:10:20 -0700
committerBharat Mediratta <bharat@menalto.com>2009-09-10 21:10:20 -0700
commitb8053c9ddf3e393f76594e7dccc2f81f7116fd85 (patch)
treec3408ce73ddfcaee522672786fea780e04658c31 /modules/gallery/controllers
parentedb33334f13139ee9a40c2849900767585cb9097 (diff)
Rename "after_installer" to "welcome_message" in the code to make it
clearer what its purpose is. Add some spacing in the theme for it so that it's less cramped.
Diffstat (limited to 'modules/gallery/controllers')
-rw-r--r--modules/gallery/controllers/welcome_message.php (renamed from modules/gallery/controllers/after_install.php)4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gallery/controllers/after_install.php b/modules/gallery/controllers/welcome_message.php
index b640092f..a4b690e3 100644
--- a/modules/gallery/controllers/after_install.php
+++ b/modules/gallery/controllers/welcome_message.php
@@ -17,13 +17,13 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
-class After_Install_Controller extends Controller {
+class Welcome_Message_Controller extends Controller {
public function index() {
if (!user::active()->admin) {
url::redirect(item::root()->url());
}
- $v = new View("after_install.html");
+ $v = new View("welcome_message.html");
$v->user = user::active();
print $v;
}