mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-19 17:38:06 +02:00
Replace 707 with 770 - I think this is all of them
This commit is contained in:
parent
e52e2c7840
commit
e19c852d38
@ -1081,7 +1081,7 @@
|
|||||||
. ',<br>' . lang('Please x by hand',lang('delete')) . '<br><br>'
|
. ',<br>' . lang('Please x by hand',lang('delete')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/users/');
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
||||||
break;
|
break;
|
||||||
case 35: $s .= lang('Account has been updated') . '<p>'
|
case 35: $s .= lang('Account has been updated') . '<p>'
|
||||||
@ -1091,7 +1091,7 @@
|
|||||||
lang('rename')) . '<br><br>'
|
lang('rename')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/users/');
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
||||||
break;
|
break;
|
||||||
case 36: $s .= lang('Account has been created') . '<p>'
|
case 36: $s .= lang('Account has been created') . '<p>'
|
||||||
@ -1101,7 +1101,7 @@
|
|||||||
lang('create')) . '<br><br>'
|
lang('create')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/users/');
|
. $phpgw_info['server']['files_dir'] . '/users/');
|
||||||
break;
|
break;
|
||||||
case 37: $s .= lang('Group has been added') . '<p>'
|
case 37: $s .= lang('Group has been added') . '<p>'
|
||||||
@ -1110,7 +1110,7 @@
|
|||||||
lang('create')) . '<br><br>'
|
lang('create')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/groups/');
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
||||||
break;
|
break;
|
||||||
case 38: $s .= lang('Group has been deleted') . '<p>'
|
case 38: $s .= lang('Group has been deleted') . '<p>'
|
||||||
@ -1119,7 +1119,7 @@
|
|||||||
lang('delete')) . '<br><br>'
|
lang('delete')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/groups/');
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
||||||
break;
|
break;
|
||||||
case 39: $s .= lang('Group has been updated') . '<p>'
|
case 39: $s .= lang('Group has been updated') . '<p>'
|
||||||
@ -1128,7 +1128,7 @@
|
|||||||
lang('rename')) . '<br><br>'
|
lang('rename')) . '<br><br>'
|
||||||
. lang('To correct this error for the future you will need to properly set the')
|
. lang('To correct this error for the future you will need to properly set the')
|
||||||
. '<br>' . lang('permissions to the files/users directory')
|
. '<br>' . lang('permissions to the files/users directory')
|
||||||
. '<br>' . lang('On *nix systems please type: x','chmod 707 '
|
. '<br>' . lang('On *nix systems please type: x','chmod 770 '
|
||||||
. $phpgw_info['server']['files_dir'] . '/groups/');
|
. $phpgw_info['server']['files_dir'] . '/groups/');
|
||||||
break;
|
break;
|
||||||
case 40: $s .= lang('You have not entered a\nBrief Description').'.';
|
case 40: $s .= lang('You have not entered a\nBrief Description').'.';
|
||||||
|
@ -320,7 +320,7 @@
|
|||||||
global $phpgw_info;
|
global $phpgw_info;
|
||||||
$path = $this->getabsolutepath($dir);
|
$path = $this->getabsolutepath($dir);
|
||||||
umask(000);
|
umask(000);
|
||||||
if (!mkdir($path, 01707)) {
|
if (!mkdir($path, 01770)) {
|
||||||
return False;
|
return False;
|
||||||
}else{
|
}else{
|
||||||
return True;
|
return True;
|
||||||
@ -340,7 +340,7 @@
|
|||||||
if (!$this->mkdir ($path)) {
|
if (!$this->mkdir ($path)) {
|
||||||
$msg = "To correct this error you will need to properly set the "
|
$msg = "To correct this error you will need to properly set the "
|
||||||
. "permissions to the files/users directory.<br> "
|
. "permissions to the files/users directory.<br> "
|
||||||
."On *nix systems please type: chmod 707 ";
|
."On *nix systems please type: chmod 770 ";
|
||||||
|
|
||||||
if ($type = "user"){
|
if ($type = "user"){
|
||||||
$msg .= $phpgw_info["server"]["files_dir"] . "/users/";
|
$msg .= $phpgw_info["server"]["files_dir"] . "/users/";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user