Changeset 10458 for extensions
- Timestamp:
- Apr 18, 2011, 12:33:12 AM (14 years ago)
- Location:
- extensions/event_cats
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/event_cats/CHANGELOG.txt
r10054 r10458 1 2011-04-18 1.2.6 2 Fix bug 2267 and small improvements 3 1 4 2011-04-04 1.2.5 2 5 Compatibility with Piwigo 2.2 -
extensions/event_cats/main.inc.php
r10059 r10458 44 44 define( // ------------------------------------------------------------------- 45 45 'EVNTCATS_INFO_VERSION', // VERSION HISTORY : 46 '1.2.5' // Compatibility with Piwigo 2.2 (svn:10052) 46 '1.2.6' // Fix bug 2267 « "Test" link in "autolog entries" admin page 47 // doesn't work », and small improvements 48 // '1.2.5' // Compatibility with Piwigo 2.2 (svn:10052) 47 49 // '1.2.4' // Fix bug 2135: Constant ROOT_URL already defined; replaced by 48 50 // // EC_ROOT_URL … … 135 137 $url = ''; 136 138 foreach ($_GET as $item => $value) { 137 $url.= '&'.$item.'='.$value; 139 if ($url != '') $url.='&'; 140 $url.= $item.'='.$value; 138 141 } 139 142 logout_user(); 140 redirect( make_index_url().$url);143 redirect(get_absolute_root_url().'index.php?'.$url); 141 144 } 142 145 build_ec_lists();
Note: See TracChangeset
for help on using the changeset viewer.