aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChristian Vogeley <christian.vogeley@hotmail.de>2014-01-12 00:53:28 +0100
committerChristian Vogeley <christian.vogeley@hotmail.de>2014-01-12 00:53:28 +0100
commit6403875f26c95738fbeeaf9661ac91bbc5f62b3a (patch)
treed11a952edcd9d539153ee7f339ed40fa54ca9adf /include
parent5fd3ca36f8e7b34845e96c779279d64e98be84ed (diff)
downloadvolse-hubzilla-6403875f26c95738fbeeaf9661ac91bbc5f62b3a.tar.gz
volse-hubzilla-6403875f26c95738fbeeaf9661ac91bbc5f62b3a.tar.bz2
volse-hubzilla-6403875f26c95738fbeeaf9661ac91bbc5f62b3a.zip
remove debug loggers
Diffstat (limited to 'include')
-rwxr-xr-xinclude/text.php3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/text.php b/include/text.php
index 587514fb5..f5c440e4a 100755
--- a/include/text.php
+++ b/include/text.php
@@ -1422,10 +1422,7 @@ function layout_select($channel_id, $current = '') {
$o .= '<select name="layout_mid" id="select-layout_mid" >';
$empty_selected = (($current === '') ? ' selected="selected" ' : '');
$o .= '<option value="" ' . $empty_selected . '>' . t('default') . '</option>';
- logger('current'.$current);
foreach($r as $rr) {
- logger('current'.$current);
- logger('mid'.$rr['mid']);
$selected = (($rr['mid'] == $current) ? ' selected="selected" ' : '');
$o .= '<option value="' . $rr['mid'] . '"' . $selected . '>' . $rr['sid'] . '</option>';
}