1timezoneco plugin for DokuWiki 2 3Set up a different timezone for your dokuwiki 4 5edit dokuwiki/public/inc/init.php 6 7Comment line 95: 8//date_default_timezone_set(@date_default_timezone_get()); 9 10Add lines: 11 12if(empty($conf['plugin']['timezoneco']['timezone'])){ 13 date_default_timezone_set(@date_default_timezone_get()); 14}else{ 15 date_default_timezone_set($conf['plugin']['timezoneco']['timezone']); 16} 17 18 19 20All documentation for this plugin can be found at 21http://github.com/drbeco 22 23If you install this plugin manually, make sure it is installed in 24lib/plugins/timezone/ - if the folder is called different it 25will not work! 26 27Please refer to http://www.dokuwiki.org/extensions for additional info 28on how to install extensions in DokuWiki. 29 30 31 32 33---- 34Copyright (C) Ruben Carlo Benante <rcb@beco.cc> 35 36This program is free software; you can redistribute it and/or modify 37it under the terms of the GNU General Public License as published by 38the Free Software Foundation; version 2 of the License 39 40This program is distributed in the hope that it will be useful, 41but WITHOUT ANY WARRANTY; without even the implied warranty of 42MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 43GNU General Public License for more details. 44 45See the LICENSING file for details 46