Changeset 2596:62f32566c15f for admin/blog.php
- Timestamp:
- 12/02/13 15:27:54 (12 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/blog.php
r2566 r2596 21 21 22 22 # Create a blog 23 if (!isset($_POST['id']) && !empty($_POST['blog_id']))23 if (!isset($_POST['id']) && (isset($_POST['create']))) 24 24 { 25 25 $cur = $core->con->openCursor($core->prefix.'blog'); … … 84 84 '<p class="form-note">'.__('At least 2 characters using letters, numbers or symbols.').'</p> '; 85 85 86 if ($blog_id) {87 echo88 '<p class="form-note warn">'.__('Please note that changing your blog ID may require changes in your public index.php file.').'</p>';89 }90 91 86 echo 92 87 '<p><label class="required" for="blog_name"><abbr title="'.__('Required field').'">*</abbr> '.__('Blog name:').'</label> '. … … 99 94 form::textarea('blog_desc',60,5,html::escapeHTML($blog_desc)).'</p>'. 100 95 101 '<p><input type="submit" accesskey="s" value="'.__('Create').'" /></p>'.96 '<p><input type="submit" accesskey="s" name="create" value="'.__('Create').'" /></p>'. 102 97 '</form>'; 103 98
Note: See TracChangeset
for help on using the changeset viewer.