substituted explode for split

This commit is contained in:
hyung-hwan 2011-02-21 13:44:43 +00:00
parent 75b68e9e58
commit 5955ddcddf
3 changed files with 10 additions and 4 deletions

View File

@ -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"

View File

@ -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;