Changeset 553

Show
Ignore:
Timestamp:
08/28/07 15:28:29 (1 year ago)
Author:
laurentj
Message:

fixed bug #247: bad language code in rss and atom feed, p=lionelt
added the uploads/ directory in application for jforms uploads

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/build/manifests/myapp.mn

    r322 r553  
    2020cd myapp/var 
    2121  .htaccess 
     22cd myapp/var/uploads 
    2223cd myapp/var/config 
    2324  defaultconfig.ini.php.dist 
  • trunk/build/manifests/myapp.mn

    r322 r553  
    2020cd myapp/var 
    2121  .htaccess 
     22cd myapp/var/uploads 
    2223cd myapp/var/config 
    2324  defaultconfig.ini.php.dist 
  • trunk/build/manifests/testapp.mn

    r526 r553  
    126126  .htaccess 
    127127cd testapp/var/log 
     128cd testapp/var/uploads 
    128129cd testapp/var/config 
    129130  defaultconfig.ini.php.dist 
  • trunk/build/manifests/testapp.mn

    r526 r553  
    126126  .htaccess 
    127127cd testapp/var/log 
     128cd testapp/var/uploads 
    128129cd testapp/var/config 
    129130  defaultconfig.ini.php.dist 
  • trunk/lib/jelix-scripts/commands/createapp.cmd.php

    r480 r553  
    7070       $this->createDir(JELIX_APP_VAR_PATH.'themes/'); 
    7171       $this->createDir(JELIX_APP_VAR_PATH.'themes/default/'); 
     72       $this->createDir(JELIX_APP_VAR_PATH.'uploads/'); 
    7273       $this->createDir(JELIX_APP_PATH.'modules'); 
    7374       $this->createDir(JELIX_APP_PATH.'plugins'); 
  • trunk/lib/jelix-scripts/commands/createapp.cmd.php

    r480 r553  
    7070       $this->createDir(JELIX_APP_VAR_PATH.'themes/'); 
    7171       $this->createDir(JELIX_APP_VAR_PATH.'themes/default/'); 
     72       $this->createDir(JELIX_APP_VAR_PATH.'uploads/'); 
    7273       $this->createDir(JELIX_APP_PATH.'modules'); 
    7374       $this->createDir(JELIX_APP_PATH.'plugins'); 
  • trunk/lib/jelix/core/response/jResponseXmlFeed.class.php

    r494 r553  
    6666 
    6767        $this->charset  = $gJConfig->defaultCharset; 
    68         $this->lang     = $gJConfig->defaultLocale; 
     68        list($lang,$country ) = split('_', $gJConfig->defaultLocale); 
     69        $this->lang       = $lang; 
    6970 
    7071        parent::__construct (); 
  • trunk/lib/jelix/core/response/jResponseXmlFeed.class.php

    r494 r553  
    6666 
    6767        $this->charset  = $gJConfig->defaultCharset; 
    68         $this->lang     = $gJConfig->defaultLocale; 
     68        list($lang,$country ) = split('_', $gJConfig->defaultLocale); 
     69        $this->lang       = $lang; 
    6970 
    7071        parent::__construct (); 
Download in other formats: Unified Diff Zip Archive