Skip to content
This repository has been archived by the owner on Aug 24, 2024. It is now read-only.

Commit

Permalink
Bugfix: Non-foldered documents not displaying in mobile.
Browse files Browse the repository at this point in the history
This fixes a regression caused by a variable collision in  8f7d54b; this caused
documents that were not in folders to not to display on mobile interface.
  • Loading branch information
judsonmitchell committed Apr 4, 2017
1 parent 7f2b7a2 commit a24979a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
include 'db.php';
$path = substr(CC_BASE_URL, strlen(CC_DOMAIN));
session_set_cookie_params(0, $path);
$d_path = substr(CC_BASE_URL, strlen(CC_DOMAIN));
session_set_cookie_params(0, $d_path);
session_start();
include 'lib/php/mobile_detect.php';
include 'lib/php/load.php';
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

$version = "7.2.9";
$version = "7.2.10";

0 comments on commit a24979a

Please sign in to comment.