Merge branch 'master' of git://anongit.kde.org/owncloud

This commit is contained in:
Michael Gapczynski 2011-08-27 11:57:26 -04:00
Родитель 8543191406 f8fc8eb430
Коммит 88e7939364
2 изменённых файлов: 6 добавлений и 7 удалений

Просмотреть файл

@ -142,7 +142,6 @@ var PlayList={
PlayList.items.push(item);
},
remove:function(index){
alert('remove');
PlayList.items.splice(index,1);
PlayList.render();
},

Просмотреть файл

@ -275,12 +275,12 @@ class OC_Setup {
private static function createHtaccess() {
$SERVERROOT=OC::$SERVERROOT;
$WEBROOT=OC::$WEBROOT;
$content = "ErrorDocument 404 /$WEBROOT/core/templates/404.php\n";//custom 404 error page
$content.= '<IfModule mod_php5.c>';
$content.= 'php_value upload_max_filesize 512M';//upload limit
$content.= 'php_value post_max_size 512M';
$content.= 'SetEnv htaccessWorking true';
$content.= '</IfModule>';
$content = "ErrorDocument 404 $WEBROOT/core/templates/404.php\n";//custom 404 error page
$content.= "<IfModule mod_php5.c>\n";
$content.= "php_value upload_max_filesize 512M\n";//upload limit
$content.= "php_value post_max_size 512M\n";
$content.= "SetEnv htaccessWorking true\n";
$content.= "</IfModule>\n";
$content.= "Options -Indexes\n";
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it