mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
98918bc336
- Added new phrases where missing or hard coded - Fixed windowz new lines in /application/*
18 lines
463 B
PHP
18 lines
463 B
PHP
<?php
|
|
$this->load->view('templates/header', array('title' => 'PhrasesEdit'));
|
|
?>
|
|
<div class="row">
|
|
<div class="span4">
|
|
<h2>Phrase: <?php echo $phrase->phrase_id; ?></h2>
|
|
<form method="post" action="../save">
|
|
Bezeichnung: <input type="text" name="phrase" value="<?php echo $phrase->phrase; ?>" />
|
|
<input type="hidden" name="phrase_id" value="<?php echo $phrase->phrase_id; ?>" />
|
|
<button type="submit">Save</button>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|