Skip to content

Commit

Permalink
Fix select2 visual issue in edit lp item - Refs #8429
Browse files Browse the repository at this point in the history
  • Loading branch information
jloguercio committed Oct 11, 2016
1 parent 40d6cb4 commit 46b54f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/lp/lp_add_item.php
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function confirmation(name) {
/* DISPLAY SECTION */

echo $learnPath->build_action_menu();
echo '<div class="row" style="overflow:hidden">';
echo '<div class="row">';
echo '<div id="lp_sidebar" class="col-md-4">';
echo $learnPath->return_new_tree(null, true);

Expand Down
2 changes: 1 addition & 1 deletion main/lp/lp_edit_item.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ function confirmation(name) {

echo $_SESSION['oLP']->build_action_menu();

echo '<div class="row" style="overflow:hidden">';
echo '<div class="row">';
echo '<div id="lp_sidebar" class="col-md-4">';
$path_item = isset($_GET['path_item']) ? $_GET['path_item'] : 0;
$path_item = Database::escape_string($path_item);
Expand Down

0 comments on commit 46b54f5

Please sign in to comment.