From 5127c2f0c0f1df2f0d9e0e4582ee4fcbb799bccc Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 22 Jan 2006 18:47:29 +0000 Subject: [PATCH] s/Node_Controller/Controller/g --- global.php | 2 +- includes/controller.php | 4 ++-- includes/paths.php | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/global.php b/global.php index 7d08725..c679ead 100644 --- a/global.php +++ b/global.php @@ -25,7 +25,7 @@ require_once('./includes/controller.php'); $dochooser = ((defined('PATH_OVERRIDE') AND PATH_OVERRIDE == 1) ? false : true); if ($dochooser) { - $controller = new Node_Controller(Paths::init()); + $controller = new Controller(Paths::init()); if (isset($viewsvn->in['rebuild']) AND $viewsvn->in['rebuild'] == 1 AND $viewsvn->get('debug') == true) { diff --git a/includes/controller.php b/includes/controller.php index f8d6146..09c0f2c 100644 --- a/includes/controller.php +++ b/includes/controller.php @@ -33,7 +33,7 @@ * @package ViewSVN * */ -class Node_Controller +class Controller { /** * Registry class @@ -111,7 +111,7 @@ class Node_Controller * * @access public */ - function Node_Controller($nodepath) + function Controller($nodepath) { global $viewsvn; diff --git a/includes/paths.php b/includes/paths.php index 95fb4fd..f64fc1a 100644 --- a/includes/paths.php +++ b/includes/paths.php @@ -46,7 +46,7 @@ class Paths // ################################################################### /** * Parses the incoming path variables and returns a sanitized path that - * is used to init the Node_Controller + * is used to init the Controller * * @access public * -- 2.22.5