~ubuntu-branches/ubuntu/trusty/phpmyadmin/trusty

« back to all changes in this revision

Viewing changes to libraries/plugins/import/ImportXml.class.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2013-10-07 20:18:01 UTC
  • mfrom: (1.2.46)
  • Revision ID: package-import@ubuntu.com-20131007201801-l5l0ril5992p8sxz
Tags: 4:4.0.8-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
/**
16
16
 * We need way to disable external XML entities processing.
17
17
 */
18
 
if (!function_exists('libxml_disable_entity_loader')) {
 
18
if (! function_exists('libxml_disable_entity_loader')) {
 
19
    $GLOBALS['skip_import'] = true;
19
20
    return;
20
21
}
21
22