Exemplo n.º 1
0
 * http://www.mozilla.org/MPL/
 *
 * Software distributed under the License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
 * License for the specific language governing rights and limitations
 * under the License.
 */
if (!defined('IS_VALID_PHPMYFAQ_ADMIN')) {
    header('Location: http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['SCRIPT_NAME']));
    exit;
}
print sprintf('<h2>%s</h2>', $PMF_LANG['ad_menu_glossary']);
if ($permission['editglossary']) {
    $id = PMF_Filter::filterInput(INPUT_GET, 'id', FILTER_VALIDATE_INT);
    $glossary = new PMF_Glossary();
    $glossaryItem = $glossary->getGlossaryItem($id);
    ?>
<form action="?action=updateglossary" method="post">
<fieldset>
    <legend><?php 
    print $PMF_LANG['ad_glossary_edit'];
    ?>
</legend>

    <input type="hidden" name="id" value="<?php 
    print $glossaryItem['id'];
    ?>
" />

    <label class="left" for="item"><?php 
    print $PMF_LANG['ad_glossary_item'];