diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-04 04:28:04 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-04 04:28:04 +0000 |
commit | c487443860582b5f85c2c77e7eb7c2ff1221f87b (patch) | |
tree | e2a48a7514602d8bd0f2891d6a2ce23cd22c1024 | |
parent | 81a6dc26cb9bcbb3a494c2df5ea279788559bd7f (diff) |
Move <label> outside of <?= ?> block
-rw-r--r-- | modules/local_import/views/local_import_tree.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/local_import/views/local_import_tree.html.php b/modules/local_import/views/local_import_tree.html.php index b028cfa1..b664c679 100644 --- a/modules/local_import/views/local_import_tree.html.php +++ b/modules/local_import/views/local_import_tree.html.php @@ -16,7 +16,7 @@ $("#<?= $uid ?>").ready(function() { <? if (!empty($file_info["is_dir"])): ?> <span class="ui-icon ui-icon-plus" ref="<?= $file ?>"></span> <? endif ?> - <?= "<label>" . form::checkbox("checkbox", $file) . " $file</label>" ?> + <label> <?= form::checkbox("checkbox", $file) . " $file" ?> </label> </li> <? endforeach ?> </ul> |