package: drupal5

BASE_URL needs to reset in /usr/share/drupal5/scripts/cron.sh like that:

for site in /etc/drupal/5/sites/* ; do
        BASE_URL=
        for file in $site/baseurl.php $site/settings.php; do
                [ -f "$file" ] && BASE_URL=`grep '^$base_url' $file | cut -d"'" 
-f2`
                [ "X$BASE_URL" != "X" ] && break
        done
        ...
done

Justification: 

Site 1 has BASE_URL defined.
Site 2 has no baseurl.php, so the break applies and BASE_URL of Site 1 is used 
for Site 2.

Regards
            Racke

-- 
LinuXia Systems => http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP => http://www.icdevgroup.org/
Interchange Development Team




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to