ugoviti / synbak

Synbak - Universal Backup System
GNU General Public License v3.0
20 stars 7 forks source link

Change split() function to explode() function #2

Closed jvantslot closed 6 years ago

jvantslot commented 6 years ago

As of PHP the split() function was DEPRECATED in PHP 5.3.0, and REMOVED in PHP 7.0.0.

Calls to split() throws errors in PHP 7.0 and newer. Replacing it with explode() seems to do the trick.