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