Skip to content
This repository has been archived by the owner on Oct 30, 2019. It is now read-only.

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
flabbyrabbit committed May 15, 2018
1 parent 95ec848 commit 2313411
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/elements/levels/level.php
Expand Up @@ -26,7 +26,7 @@
<form <?=isset($form->method)?'method="'.strtoupper($form->method).'"':'';?>>
<fieldset>
<?php foreach($form->fields AS $field): ?>
<label <?=isset($field->name)?"for='{$field->name}'?>><?=$field->label;?>:</label>
<label <?=isset($field->name)?"for='{$field->name}'":""?>><?=$field->label;?>:</label>
<input type='<?=isset($field->type)?"{$field->type}":'text';?>' autocomplete="off" <?=isset($field->name)?"id='{$field->name}' name='{$field->name}'":'';?>><br>
<?php endforeach; ?>
<input type="submit" class="button" value="Submit">
Expand Down

0 comments on commit 2313411

Please sign in to comment.