mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-19 06:23:12 +01:00
21 lines
784 B
PHP
21 lines
784 B
PHP
|
<?php
|
||
|
|
||
|
global $pref;
|
||
|
|
||
|
$pref->change ("phpwebhosting", "name", "True");
|
||
|
$pref->change ("phpwebhosting", "mime_type", "True");
|
||
|
$pref->change ("phpwebhosting", "size", "True");
|
||
|
$pref->change ("phpwebhosting", "created", "True");
|
||
|
$pref->change ("phpwebhosting", "modified", "True");
|
||
|
//$pref->change ("phpwebhosting", "owner", "False");
|
||
|
$pref->change ("phpwebhosting", "createdby_id", "True");
|
||
|
$pref->change ("phpwebhosting", "modifiedby_id", "True");
|
||
|
//$pref->change ("phpwebhosting", "app", "False");
|
||
|
$pref->change ("phpwebhosting", "comment", "True");
|
||
|
//$pref->change ("phpwebhosting", "viewinnewwin", "False");
|
||
|
//$pref->change ("phpwebhosting", "viewonserver", "False");
|
||
|
//$pref->change ("phpwebhosting", "dotdot", "False");
|
||
|
//$pref->change ("phpwebhosting", "dotfiles", "False");
|
||
|
|
||
|
?>
|