Changeset 32917 for extensions/block_search/main.inc.php
- Timestamp:
- Jan 18, 2023, 4:05:30 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.