diff --git a/Scripts/CentOS-Web/admin/content.php b/Scripts/CentOS-Web/admin/content.php
deleted file mode 100644
index a2b05ca..0000000
--- a/Scripts/CentOS-Web/admin/content.php
+++ /dev/null
@@ -1,187 +0,0 @@
- 'index.php')
- {
- echo '
Sorry, this page can\'t be served directly. ';
- echo 'Try this instead.
';
- exit;
- }
-
-//-----------/* Sanitize URL variables */
-
- foreach ( $_GET as $key => $value )
- {
- if ( sanitize_url_var($key) )
- {
- $url[$key] = $value;
- }
- }
-
-//----------/* Page Selector */
-
- if ( isset( $url['page'] ) )
- {
- switch ( $url['page'] )
- {
- case 'entries':
- /* Build relation between "Entries" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case "add":
- $page = 'p_entries_add.php';
- break;
-
- case "update":
- $page = 'p_entries_update.php';
- break;
- }
- }
- else
- {
- $page = 'p_entries.php';
- }
- break;
-
- case 'pages':
- // Just if user has admin rights.
- if ( is_user('administrator') )
- {
- /* Build relation between "Pages" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case 'add':
- $page = 'p_pages_add.php';
- break;
-
- case 'update':
- $page = 'p_pages_update.php';
- break;
- }
- }
- else
- {
- $page = 'p_pages.php';
- }
- }
- break;
-
- case 'categories':
- // Just if user has admin rights.
- if ( is_user('administrator') )
- {
- /* Build relation between "Categories" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case 'add':
- $page = 'p_categories_add.php';
- break;
- case 'update':
- $page = 'p_categories_update.php';
- break;
- case 'tree':
- $page = 'p_categories_tree.php';
- break;
- }
- }
- else
- {
- $page = 'p_categories.php';
- }
- }
- break;
-
- case 'comments':
- // Just if user has admin rights.
- if ( is_user('administrator') )
- {
- /* Build relation between "Links" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case 'add':
- $page = 'p_comments_add.php';
- break;
- case 'update':
- $page = 'p_comments_update.php';
- break;
- }
- }
- else
- {
- $page = 'p_comments.php';
- }
- }
- break;
-
- case 'links':
- // Just if user has admin rights.
- if ( is_user('administrator') )
- {
- /* Build relation between "Links" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case 'add':
- $page = 'p_links_add.php';
- break;
- }
- }
- else
- {
- $page = 'p_links.php';
- }
- }
- break;
-
- case 'users':
- // Just if user has admin rights.
- if ( is_user('administrator') )
- {
- /* Build relation between "Links" sublinks and its pages */
- if ( isset($url['action'] ) )
- {
- switch ( $url['action'] )
- {
- case 'add':
- $page = 'p_users_add.php';
- break;
- }
- }
- else
- {
- $page = 'p_users.php';
- }
- }
- break;
-
- default:
- $page = 'p_index.php';
- break;
- }
- }
- else
- {
- $page = 'p_index.php';
- }
-
-//--------/* Verify file before include it
-
- if ( file_exists( ABSPATH . 'admin/' . $page ) )
- {
- include (ABSPATH . 'admin/' . $page );
- }
-?>
diff --git a/Scripts/CentOS-Web/admin/footer.php b/Scripts/CentOS-Web/admin/footer.php
deleted file mode 100644
index 8b06438..0000000
--- a/Scripts/CentOS-Web/admin/footer.php
+++ /dev/null
@@ -1,35 +0,0 @@
- 'index.php')
- {
- echo 'Sorry, this page can\'t be served directly. ';
- echo 'Try this instead.
';
- exit;
- }
-?>
-
-
-
-
-
-
-