diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-27 04:12:52 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-27 04:12:52 +0100 |
commit | 9f5600ba3567c5b9a6a28ab3ed6d5ec75cf58a86 (patch) | |
tree | 06460c999ac4db02e4860b4de026bbce7e829da2 /includes | |
parent | a939300bae092bcd836dc11537b3efa005634c25 (diff) | |
download | istreamdev-9f5600ba3567c5b9a6a28ab3ed6d5ec75cf58a86.tar.gz istreamdev-9f5600ba3567c5b9a6a28ab3ed6d5ec75cf58a86.tar.bz2 |
Add a * to the session name when the encoding is in progress
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/inc_home.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/includes/inc_home.php b/includes/inc_home.php index 00a19e6..c4416ba 100755 --- a/includes/inc_home.php +++ b/includes/inc_home.php @@ -46,6 +46,10 @@ if ($dir_handle) continue;
}
+ // Check if encoding
+ if (file_exists('ram/' .$session .'/segmenter.pid'))
+ $sessionname = "*" .$sessionname;
+
$sessioncnt++;
$sessionname .= $realname;
|