diff --git a/admin/editCategory.php b/admin/editCategory.php
deleted file mode 100644
index 758e1a2..0000000
--- a/admin/editCategory.php
+++ /dev/null
@@ -1,40 +0,0 @@
-hasPriv("admin"))
-{
- errorpage();
- exit;
-}
-else
-{
- global $admin_mode;
- $admin_mode = 1;
-}
-
-apidb_header("Edit Category");
-
-$t = new TableVE("edit");
-
-
-if($_POST)
-{
- $t->update($_POST);
-}
-else
-{
- $table = "appCategory";
- $query = "SELECT * FROM $table WHERE catId = $catId";
-
- if(debugging())
- echo "$query
\n";
-
- $t->edit($query);
-}
-
-apidb_footer();
-
-?>