summaryrefslogtreecommitdiff
path: root/modules/gallery/controllers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-09-10 21:26:21 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-09-10 21:26:21 -0700
commitfbb58671d1a6dd1719566c7e3813a0deee6d00ca (patch)
tree994f3b69451008ddc29836d695b326415a2efc0a /modules/gallery/controllers
parent25ea6085b78423ee651dc21b639c5f10f59dcaf0 (diff)
parent190d7aaa55b4f55ea3d93fb8a3d4650d7e1fc85c (diff)
Merge branch 'master' of git@github.com:gallery/gallery3
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;
}