Uniform headers
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
/* code to display an application */
|
||||
/**********************************/
|
||||
|
||||
/**
|
||||
* APPLICATION ENVIRONMENT
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
|
||||
10
bugs.php
10
bugs.php
@@ -1,9 +1,11 @@
|
||||
<?php
|
||||
/*
|
||||
* Application Database - appview.php
|
||||
*
|
||||
*/
|
||||
/*********************************/
|
||||
/* bugs linked to an application */
|
||||
/*********************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."application.php");
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
/* script expects appId, versionId and threadId as argument */
|
||||
/************************************************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."comments.php");
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*******************/
|
||||
/* delete comments */
|
||||
/*******************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."application.php");
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/************************/
|
||||
/* code to edit an user */
|
||||
/************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
<?php
|
||||
/***********************************/
|
||||
/* Application Database Index Page */
|
||||
/* application database index page */
|
||||
/***********************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*******************************/
|
||||
/* code to delete a maintainer */
|
||||
/*******************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."tableve.php");
|
||||
|
||||
@@ -1,7 +1,20 @@
|
||||
<?php
|
||||
/*******************************/
|
||||
/* code to submit a maintainer */
|
||||
/*******************************/
|
||||
|
||||
// Check the input of a submitted form. And output with a list
|
||||
// of errors. (<ul></ul>)
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."tableve.php");
|
||||
require(BASE."include/"."category.php");
|
||||
|
||||
/**
|
||||
* Check the input of a submitted form. And output with a list
|
||||
* of errors. (<ul></ul>)
|
||||
*/
|
||||
function checkAppMaintainerInput( $fields )
|
||||
{
|
||||
$errors = "";
|
||||
@@ -21,10 +34,6 @@ function checkAppMaintainerInput( $fields )
|
||||
}
|
||||
}
|
||||
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."tableve.php");
|
||||
require(BASE."include/"."category.php");
|
||||
|
||||
if(!loggedin())
|
||||
{
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
<?php
|
||||
/**************************************/
|
||||
/* Application Database - Note Viewer */
|
||||
/**************************************/
|
||||
/***************/
|
||||
/* note viewer */
|
||||
/***************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/**********************/
|
||||
/* preferences editor */
|
||||
/**********************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
|
||||
|
||||
@@ -5,12 +5,13 @@
|
||||
/* cmd and imageId */
|
||||
/*******************************************************************/
|
||||
|
||||
/**
|
||||
* APPLICATION ENVIRONMENT
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."application.php");
|
||||
|
||||
if($_REQUEST['cmd'])
|
||||
{
|
||||
//process screenshot upload
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*****************/
|
||||
/* search engine */
|
||||
/*****************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."application.php");
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/**************************/
|
||||
/* FIXME: add description */
|
||||
/**************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."qclass.php");
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
<?php
|
||||
/*************************************/
|
||||
/* Application Database Support Page */
|
||||
/*************************************/
|
||||
/****************/
|
||||
/* support page */
|
||||
/****************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*************************/
|
||||
/* code to modify rating */
|
||||
/*************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
include(BASE."include/"."rating.php");
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*************************/
|
||||
/* code to modify voting */
|
||||
/*************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
include(BASE."include/"."vote.php");
|
||||
|
||||
@@ -3,6 +3,9 @@
|
||||
/* code to view vendors & their apps */
|
||||
/*************************************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
require(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."application.php");
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
<?php
|
||||
/*********************/
|
||||
/* voting statistics */
|
||||
/*********************/
|
||||
|
||||
/*
|
||||
* application evironment
|
||||
*/
|
||||
include("path.php");
|
||||
include(BASE."include/"."incl.php");
|
||||
require(BASE."include/"."category.php");
|
||||
|
||||
Reference in New Issue
Block a user