Advertisement
custompc

Get bblcone working in PHP 7.2

Feb 15th, 2019
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. BBCLONE: https://bbclone.de
  2. BBCLONE http://svn.bbclone.org/BBClone/trunk/
  3. 0.6.5-snapshot - working with PHP 7.2?
  4.  
  5. ---
  6.  
  7. In file /lib/html.php
  8.  
  9. //   Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP;
  10. //  Line 84 function bbc_html() {
  11.  
  12. function __construct() {
  13.  
  14. ---
  15.  
  16. In file /show_detailed.php
  17.  
  18. //              each deprecated in php 7.2 replaced with foreach
  19. // Line 171     reset($fields);
  20. // Line 172     while (list(, $val) = each($fields)) {
  21.  
  22. foreach($fields as $val) {
  23.  
  24. ---
  25.  
  26. In file /show_global.php
  27.  
  28. Many incidence of 'each' - I'm not qualified to re-code / patch - any help? admin AT cpcnw.co.uk
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement