Changeset 32917
- Timestamp:
- Jan 18, 2023, 4:05:30 PM (23 months ago)
- Location:
- extensions/block_search
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/block_search/blocksearch/main.inc.php
r32402 r32917 3 3 // |Block search for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2020 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2020 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/block_search/language/en_UK/plugin.lang.php
r32402 r32917 3 3 // |Block search for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2020 - 202 1ddtddt http://temmii.com/piwigo/ |5 // | Copyright(C) 2020 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/block_search/language/fr_FR/plugin.lang.php
r32166 r32917 3 3 // |Block search for Piwigo by TEMMII | 4 4 // +-----------------------------------------------------------------------+ 5 // | Copyright(C) 2020 ddtddthttp://temmii.com/piwigo/ |5 // | Copyright(C) 2020 - 2023 ddtddt http://temmii.com/piwigo/ | 6 6 // +-----------------------------------------------------------------------+ 7 7 // | This program is free software; you can redistribute it and/or modify | -
extensions/block_search/main.inc.php
r32432 r32917 12 12 // |Block search for Piwigo by TEMMII | 13 13 // +-----------------------------------------------------------------------+ 14 // | Copyright(C) 2020 - 202 1ddtddt http://temmii.com/piwigo/ |14 // | Copyright(C) 2020 - 2023 ddtddt http://temmii.com/piwigo/ | 15 15 // +-----------------------------------------------------------------------+ 16 16 // | This program is free software; you can redistribute it and/or modify | … … 40 40 $PWGSacc = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'PWG_Stuffs';")); 41 41 42 if( $PWGSacc['state'] == 'active'){42 if(isset($PWGSacc['state']) and $PWGSacc['state'] == 'active'){ 43 43 add_event_handler('get_stuffs_modules', 'register_bsearch_module'); 44 44
Note: See TracChangeset
for help on using the changeset viewer.