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" chgrp -R "${GROUP}" "@DEPOTDIR@/svnrepo"
chmod 0775 "@DEPOTDIR@/svnrepo" chmod 0775 "@DEPOTDIR@/svnrepo"
} }
[ "${filesdir}" = "1" ] && {
chgrp -R "${GROUP}" "@DEPOTDIR@/files"
chmod 0775 "@DEPOTDIR@/files"
}
[ "${attachmentsdir}" = "1" ] && { [ "${attachmentsdir}" = "1" ] && {
chgrp -R "${GROUP}" "@DEPOTDIR@/attachments" chgrp -R "${GROUP}" "@DEPOTDIR@/attachments"
chmod 0775 "@DEPOTDIR@/attachments" chmod 0775 "@DEPOTDIR@/attachments"

View File

@ -7,7 +7,7 @@ class Site extends Controller
var $VIEW_HOME = 'site_home'; var $VIEW_HOME = 'site_home';
var $VIEW_EDIT = 'site_edit'; var $VIEW_EDIT = 'site_edit';
var $VIEW_DELETE = 'site_delete'; var $VIEW_DELETE = 'site_delete';
var $VIEW_CATALOG = 'site_catalog'; var $VIEW_CATALOG = 'site_catalog';
var $VIEW_LOG = 'log'; var $VIEW_LOG = 'log';
function Site () function Site ()

View File

@ -75,7 +75,8 @@ class LogModel extends Model
if ($row->action == 'commit') 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['type'] = $type;
$tmp['repo'] = $repo; $tmp['repo'] = $repo;
@ -83,7 +84,7 @@ class LogModel extends Model
$log = @svn_log ( $log = @svn_log (
'file:///'.CODEPOT_SVNREPO_DIR."/{$repo}", '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) if ($log === FALSE || count($log) < 1)
{ {
$tmp['time'] = ''; $tmp['time'] = '';
@ -99,7 +100,8 @@ class LogModel extends Model
} }
else 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['type'] = $type;
$tmp['repo'] = $repo; $tmp['repo'] = $repo;