Changeset 3204110
- Timestamp:
- 12/07/2024 03:17:36 PM (15 months ago)
- File:
-
- 1 edited
-
wp-settings/trunk/wp-settings.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-settings/trunk/wp-settings.php
r3203895 r3204110 4 4 Plugin URI: https://wordpress.org/plugins/wp-settings/ 5 5 Description:Displays the important information about WordPress installation such as important wordpress settings,database settings,theme details and php information.You can generate DB Backup Script for restoring the database and for keeping database backups. 6 Version: 2.5. 36 Version: 2.5.4 7 7 Author: CodeCompiled 8 8 Author URI: http://www.codecompiled.com … … 467 467 Update 468 468 </button> --> 469 <button type="submit" value="update" name="update" style="padding: 5px 15px; background-color: # 28a745; color: #fff; border: none; cursor: pointer;">469 <button type="submit" value="update" name="update" style="padding: 5px 15px; background-color: #0073aa; color: #fff; border: none; cursor: pointer;"> 470 470 Update 471 471 </button> … … 476 476 </button> --> 477 477 <button type="submit" value="download" name="update" style="margin-left: 10px; padding: 5px 15px; background-color: #0073aa; color: #fff; border: none; cursor: pointer;"> 478 Download 478 Download DB Script 479 479 </button> 480 480 </td> … … 850 850 <?php 851 851 $sqldetails = wpsettings_getMySqlDetails(); 852 foreach ($sqldetails as $sqlKey => $sqlValue) { ?> 853 <tr> 854 <td style="width:30%"><?php echo $sqlKey; ?></td> 855 <td><?php echo $sqlValue; ?></td> 856 </tr> 857 <?php } ?> 852 foreach ($sqldetails as $sqlKey => $sqlValue) { 853 if ($sqlKey !== "TABLE DETAILS") { ?> 854 <tr> 855 <td style="width:30%"><?php echo $sqlKey; ?></td> 856 <td><?php echo $sqlValue; ?></td> 857 </tr> 858 <?php 859 } 860 } 861 ?> 858 862 </table> 859 863
Note: See TracChangeset
for help on using the changeset viewer.