Initial revision

This commit is contained in:
Jeremy Newman
2004-03-15 16:22:00 +00:00
commit 8f28ae10c4
122 changed files with 8116 additions and 0 deletions

46
admin/editAppNote.php Normal file
View File

@@ -0,0 +1,46 @@
<?
/*
* Edit AppNote
*/
include("path.php");
include(BASE."include/"."incl.php");
include(BASE."include/"."tableve.php");
include(BASE."include/"."qclass.php");
global $apidb_root;
//check for admin privs
if(!loggedin() || (!havepriv("admin") && !$current->ownsApp($appId)) )
{
errorpage("Insufficient Privileges!");
exit;
}
apidb_header("Edit Application Note");
$t = new TableVE("edit");
if($HTTP_POST_VARS)
{
// commit changes of form to database
$t->update($HTTP_POST_VARS);
}
else
{
// show form
$table = "appNotes";
$query = "SELECT * FROM $table WHERE noteId = $noteId";
if(debugging()) { echo "<p align=center><b>query:</b> $query </p>"; }
$t->edit($query);
echo html_back_link(1,$apidb_root."noteview.php?noteId=$noteId");
}
apidb_footer();
?>