substituted explode for split
This commit is contained in:
parent
75b68e9e58
commit
5955ddcddf
@ -22,6 +22,10 @@
|
||||
chgrp -R "${GROUP}" "@DEPOTDIR@/svnrepo"
|
||||
chmod 0775 "@DEPOTDIR@/svnrepo"
|
||||
}
|
||||
[ "${filesdir}" = "1" ] && {
|
||||
chgrp -R "${GROUP}" "@DEPOTDIR@/files"
|
||||
chmod 0775 "@DEPOTDIR@/files"
|
||||
}
|
||||
[ "${attachmentsdir}" = "1" ] && {
|
||||
chgrp -R "${GROUP}" "@DEPOTDIR@/attachments"
|
||||
chmod 0775 "@DEPOTDIR@/attachments"
|
||||
|
@ -75,7 +75,8 @@ class LogModel extends Model
|
||||
|
||||
if ($row->action == 'commit')
|
||||
{
|
||||
list($type,$repo,$rev) = split('[,]', $row->message);
|
||||
//list($type,$repo,$rev) = split('[,]', $row->message);
|
||||
list($type,$repo,$rev) = explode(',', $row->message);
|
||||
|
||||
$tmp['type'] = $type;
|
||||
$tmp['repo'] = $repo;
|
||||
@ -83,7 +84,7 @@ class LogModel extends Model
|
||||
|
||||
$log = @svn_log (
|
||||
'file:///'.CODEPOT_SVNREPO_DIR."/{$repo}",
|
||||
$rev, $rev, 1,SVN_DISCOVER_CHANGED_PATHS);
|
||||
$rev, $rev, 1, SVN_DISCOVER_CHANGED_PATHS);
|
||||
if ($log === FALSE || count($log) < 1)
|
||||
{
|
||||
$tmp['time'] = '';
|
||||
@ -99,7 +100,8 @@ class LogModel extends Model
|
||||
}
|
||||
else
|
||||
{
|
||||
list($type,$repo,$rev,$propname,$action) = split('[,]', $row->message);
|
||||
//list($type,$repo,$rev,$propname,$action) = split('[,]', $row->message);
|
||||
list($type,$repo,$rev,$propname,$action) = explode(',', $row->message);
|
||||
|
||||
$tmp['type'] = $type;
|
||||
$tmp['repo'] = $repo;
|
||||
|
Loading…
Reference in New Issue
Block a user