Changeset 1615:d04ee39c7146 for admin
- Timestamp:
- 08/29/13 17:51:08 (12 years ago)
- Branch:
- default
- Location:
- admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog.php
r1482 r1615 82 82 '<p><label class="required" for="blog_id"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog ID:').'</label> '. 83 83 form::field('blog_id',30,32,html::escapeHTML($blog_id)).'</p>'. 84 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p> '. 85 '<p class="form-note warn">'.__('Please note that changing your blog ID may require changes in your public index.php file.').'</p>'. 84 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p> '; 85 86 if ($blog_id) { 87 echo 88 '<p class="form-note warn">'.__('Please note that changing your blog ID may require changes in your public index.php file.').'</p>'; 89 } 86 90 91 echo 87 92 '<p><label class="required" for="blog_name"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog name:').'</label> '. 88 93 form::field('blog_name',30,255,html::escapeHTML($blog_name)).'</p>'. -
admin/blog_pref.php
r1553 r1615 170 170 171 171 if ($rs) { 172 throw new Exception(__('Th at blog Id is already in use.'));172 throw new Exception(__('This blog ID is already used.')); 173 173 } 174 174 } -
admin/js/prelude.js
r1600 r1615 8 8 $('#prelude a').removeClass('hidden'); 9 9 $('#wrapper').css('padding-top', '1em'); 10 $('#help-button').css('top', '4em'); 10 11 } 11 12 }
Note: See TracChangeset
for help on using the changeset viewer.