1
0
Fork 0
mirror of https://github.com/Alamantus/Lexiconga.git synced 2025-03-23 20:08:55 +01:00
Lexiconga/php/display.php

11 lines
No EOL
286 B
PHP

<?php
function Show_Dictionary_Function($prevent_edit) {
// Used to determine which JavaScript display function to use.
// $prevent_edit is a boolean value.
if ($prevent_edit) {
echo "ShowPublicDictionary()";
} else {
echo "ShowDictionary()";
}
}
?>