- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog_pref.php
r82 r133 268 268 '<p><label for="blog_id" class="required"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog ID:'). 269 269 form::field('blog_id',30,32,html::escapeHTML($blog_id)).'</label></p>'. 270 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').' '.271 __('Please note that changing your blog ID may require changes in your public index.php file.').'</p>';270 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p> '. 271 '<p class="form-note warn">'.__('Please note that changing your blog ID may require changes in your public index.php file.').'</p>'; 272 272 } 273 273 … … 437 437 '<fieldset><legend>'.__('Search engines robots policy').'</legend>'; 438 438 439 $i = 0; 439 440 foreach ($robots_policy_options as $k => $v) 440 441 { 441 echo '<p><label for="robots_policy" class="classic">'. 442 form::radio(array('robots_policy'),$k,$blog_settings->system->robots_policy == $k).' '.$v.'</label></p>'; 442 echo '<p><label for="robots_policy-'.$i.'" class="classic">'. 443 form::radio(array('robots_policy','robots_policy-'.$i),$k,$blog_settings->system->robots_policy == $k).' '.$v.'</label></p>'; 444 $i++; 443 445 } 444 446
Note: See TracChangeset
for help on using the changeset viewer.