summaryrefslogtreecommitdiff
path: root/app/views/configure/sharing.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/configure/sharing.phtml')
-rw-r--r--app/views/configure/sharing.phtml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/configure/sharing.phtml b/app/views/configure/sharing.phtml
index b42825382..ffe3c039b 100644
--- a/app/views/configure/sharing.phtml
+++ b/app/views/configure/sharing.phtml
@@ -15,7 +15,7 @@
<a target="_blank" class="btn" title="<?php echo _t('conf.sharing.more_information'); ?>" href="##help##"><?php echo _i('help'); ?></a>
</div></div>'>
<legend><?php echo _t('conf.sharing'); ?></legend>
- <?php foreach (FreshRSS_Context::$conf->sharing as $key => $sharing): ?>
+ <?php foreach (FreshRSS_Context::$conf->sharing as $key => $sharing) { ?>
<?php $share = FreshRSS_Context::$conf->shares[$sharing['type']]; ?>
<div class="form-group" id="group-share-<?php echo $key; ?>">
<label class="group-name">
@@ -36,14 +36,14 @@
<?php } ?>
</div>
</div>
- <?php endforeach;?>
+ <?php } ?>
<div class="form-group">
<div class="group-controls">
<select>
- <?php foreach(FreshRSS_Context::$conf->shares as $key => $params):?>
+ <?php foreach(FreshRSS_Context::$conf->shares as $key => $params) { ?>
<option value='<?php echo $key?>' data-form='<?php echo $params['form']?>' data-help='<?php if (!empty($params['help'])) {echo $params['help'];}?>'><?php echo _t('conf.sharing.' . $key) ?></option>
- <?php endforeach; ?>
+ <?php } ?>
</select>
<a href='#' class='share add btn'><?php echo _i('add'); ?></a>
</div>