Skip to content

Commit

Permalink
#970 Fix a width/height issue, rather stupid mistake, actualy
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannick committed Nov 19, 2014
1 parent a78cf85 commit 95ea539
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backstage/features.php
Original file line number Diff line number Diff line change
Expand Up @@ -248,13 +248,13 @@
<div class="form-group">
<label class="col-sm-3 control-label"><?php echo $lang['Video height'] ?><span class="help-block"><?php echo $lang['Video height help'] ?></span></label>
<div class="col-sm-9">
<input type="text" class="form-control" name="form[video_width]" maxlength="4" value="<?php echo $luna_config['o_video_width'] ?>" />
<input type="text" class="form-control" name="form[video_height]" maxlength="4" value="<?php echo $luna_config['o_video_height'] ?>" />
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label"><?php echo $lang['Video width'] ?><span class="help-block"><?php echo $lang['Video width help'] ?></span></label>
<div class="col-sm-9">
<input type="text" class="form-control" name="form[video_height]" maxlength="4" value="<?php echo $luna_config['o_video_height'] ?>" />
<input type="text" class="form-control" name="form[video_width]" maxlength="4" value="<?php echo $luna_config['o_video_width'] ?>" />
</div>
</div>
</fieldset>
Expand Down
2 changes: 1 addition & 1 deletion include/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Version
const FORUM_VERSION = '3.5.2';

// The ModernBB Core version
const FORUM_CORE_VERSION = '0.0.35.2520';
const FORUM_CORE_VERSION = '0.0.35.2521';

// The database version number, every change in the database requires this number to go one up
const FORUM_DB_VERSION = 77;
Expand Down

0 comments on commit 95ea539

Please sign in to comment.