diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 02:53:32 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-29 02:53:32 +0000 |
commit | aefce16b306505c6cfed8d87e975b2c9680559b4 (patch) | |
tree | d79433a597577196a3d6c7dba08beabc9cea3eb2 /mod/logrotate/views | |
parent | 13a495664c79037557e6c5ea7c3e442be0523139 (diff) | |
download | elgg-aefce16b306505c6cfed8d87e975b2c9680559b4.tar.gz elgg-aefce16b306505c6cfed8d87e975b2c9680559b4.tar.bz2 |
cleaned up some of the other smaller plugins
git-svn-id: http://code.elgg.org/elgg/trunk@7468 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/logrotate/views')
-rw-r--r-- | mod/logrotate/views/default/settings/logrotate/edit.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/mod/logrotate/views/default/settings/logrotate/edit.php b/mod/logrotate/views/default/settings/logrotate/edit.php index 19b92c320..db439eaa0 100644 --- a/mod/logrotate/views/default/settings/logrotate/edit.php +++ b/mod/logrotate/views/default/settings/logrotate/edit.php @@ -1,6 +1,14 @@ <?php - $period = $vars['entity']->period; - if (!$period) $period = 'monthly'; +/** + * Elgg log rotator plugin settings. + * + * @package ElggLogRotate + */ + +$period = $vars['entity']->period; +if (!$period) { + $period = 'monthly'; +} ?> <p> |