Changeset 117929 in spip-zone
- Timestamp:
- Sep 24, 2019, 8:51:31 AM (16 months ago)
- Location:
- _plugins_/spip-bonux-3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/spip-bonux-3/paquet.xml
r117914 r117929 2 2 prefix="spip_bonux" 3 3 categorie="outil" 4 version="3.5. 0"4 version="3.5.1" 5 5 etat="stable" 6 6 compatibilite="[3.0.0;3.2.*]" -
_plugins_/spip-bonux-3/spip_bonux_options.php
r117914 r117929 66 66 67 67 68 include_spip('plugins/installer');69 68 if (!function_exists('_T_ou_typo')) { 70 69 /** … … 89 88 if (is_string($valeur) and !intval($valeur)) { 90 89 // Si on a dépassé 3.2, on peut uniquement utilser typo() car ça extrait les <:chaine:> 91 if (spip_version_compare(spip_version(), '3.2', '>=')) { 90 $version = explode('.',$GLOBALS['spip_version_branche']); 91 if ($version[0] > 3 or ($version[1] >= 2 and $version[0] == 3)) { 92 92 if ( 93 93 $mode_typo == 'toujours'
Note: See TracChangeset
for help on using the changeset viewer.