Skip to content

Commit

Permalink
Fixes inconsistent indenting between folers and LOs
Browse files Browse the repository at this point in the history
git-svn-id: https://xerteonlinetoolkits.googlecode.com/svn/trunk@394 912cdd6b-5c7d-d5a7-a2ba-d0f0cdb91641
  • Loading branch information
juliantenney committed Jul 19, 2012
1 parent 9d6eb42 commit 2f887aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website_code/php/display_library.php
Expand Up @@ -206,7 +206,7 @@ function list_files_in_this_folder($folder_id, $sort_type){

while($row = mysql_fetch_array($query_response)){

echo "<div id=\"file_" . $row['template_id'] . "\" class=\"file\" style=\"padding-left:" . ($level*15) . "px\" onmousedown=\"single_click(this);file_folder_click_pause(event)\" onmouseup=\"file_drag_stop(event,this)\"><img src=\"{$xerte_toolkits_site->site_url}/website_code/images/Icon_Page.gif\" style=\"vertical-align:middle\" />" . str_replace("_", " ", $row['template_name']) . "</div>";
echo "<div id=\"file_" . $row['template_id'] . "\" class=\"file\" style=\"padding-left:" . ($level*10) . "px\" onmousedown=\"single_click(this);file_folder_click_pause(event)\" onmouseup=\"file_drag_stop(event,this)\"><img src=\"{$xerte_toolkits_site->site_url}/website_code/images/Icon_Page.gif\" style=\"vertical-align:middle\" />" . str_replace("_", " ", $row['template_name']) . "</div>";

}

Expand Down

0 comments on commit 2f887aa

Please sign in to comment.