fix form line breaking

This commit is contained in:
John Bintz 2009-06-26 07:09:40 -04:00
parent 88369d0bf6
commit d138048eef

View File

@ -40,7 +40,7 @@ class PluginWonderfulWidget extends WP_Widget {
if ($plugin_wonderful->publisher_info !== false) { if ($plugin_wonderful->publisher_info !== false) {
echo '<p>'; echo '<p>';
echo 'Select an adbox:'; echo 'Select an adbox:<br />';
foreach ($plugin_wonderful->publisher_info->adboxes as $box) { foreach ($plugin_wonderful->publisher_info->adboxes as $box) {
echo '<label>'; echo '<label>';
echo '<input type="radio" name="' echo '<input type="radio" name="'
@ -52,6 +52,7 @@ class PluginWonderfulWidget extends WP_Widget {
. ' />'; . ' />';
echo $box->adtype . " " . $box->dimensions . " (" . $box->adboxid . ")"; echo $box->adtype . " " . $box->dimensions . " (" . $box->adboxid . ")";
echo "</label>"; echo "</label>";
echo "<br />";
} }
echo '</p>'; echo '</p>';