From: garvinhicking Date: Fri, 3 Nov 2006 20:05:56 +0000 (+0000) Subject: * Fix a problem where spartacus did not properly assign configured X-Git-Tag: 1.0.3~6 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d73ed7401360dfd8a0ec8043591f3a214df74ca7;p=s9y.git * Fix a problem where spartacus did not properly assign configured permissions to downloaded directories, thanks to danilo from the forums! --- diff --git a/docs/NEWS b/docs/NEWS index 7e5889a..fc9d72c 100644 --- a/docs/NEWS +++ b/docs/NEWS @@ -1,5 +1,16 @@ # $Id$ +Version 1.0.3 () +------------------------------------------------------------------------ + + * Fix PHP 5.2.0 compatibility issue. + + * Some minor 1.1 bug backports: + + - Fix a problem where spartacus did not properly assign configured + permissions to downloaded directories, thanks to danilo from + the forums! + Version 1.0.2 (October 18th, 2006) ------------------------------------------------------------------------ diff --git a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php index d42b278..96be9fc 100644 --- a/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php +++ b/plugins/serendipity_event_spartacus/serendipity_event_spartacus.php @@ -34,7 +34,7 @@ class serendipity_event_spartacus extends serendipity_event $propbag->add('description', PLUGIN_EVENT_SPARTACUS_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Garvin Hicking'); - $propbag->add('version', '2.7'); + $propbag->add('version', '2.8'); $propbag->add('requirements', array( 'serendipity' => '0.9', 'smarty' => '2.6.7', @@ -721,6 +721,7 @@ class serendipity_event_spartacus extends serendipity_event $url = $mirror . '/' . $sfloc . '/' . $file . '?rev=1.9999'; $target = $pdir . $file; @mkdir($pdir . $plugin_to_install); + $this->fileperm($pdir . $plugin_to_install, true); $this->fetchfile($url, $target); if (!isset($baseDir)) { $baseDirs = explode('/', $file);