~chromium-team/chromium-browser/focal-stable

« back to all changes in this revision

Viewing changes to debian/tests/data/HTML5test/backend/libraries/database.php

  • Committer: Olivier Tilloy
  • Date: 2019-06-05 14:27:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1504.
  • Revision ID: olivier.tilloy@canonical.com-20190605142738-vt1q8apf04qde12k
* Upstream release: 75.0.3770.80
  - CVE-2019-5828: Use after free in ServiceWorker.
  - CVE-2019-5829: Use after free in Download Manager.
  - CVE-2019-5830: Incorrectly credentialed requests in CORS.
  - CVE-2019-5831: Incorrect map processing in V8.
  - CVE-2019-5832: Incorrect CORS handling in XHR.
  - CVE-2019-5833: Inconsistent security UI placement.
  - CVE-2019-5834: URL spoof in Omnibox on iOS.
  - CVE-2019-5835: Out of bounds read in Swiftshader.
  - CVE-2019-5836: Heap buffer overflow in Angle.
  - CVE-2019-5837: Cross-origin resources size disclosure in Appcache.
  - CVE-2019-5838: Overly permissive tab access in Extensions.
  - CVE-2019-5839: Incorrect handling of certain code points in Blink.
  - CVE-2019-5840: Popup blocker bypass.
* Install the chromium snap in place of the debian packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
 
3
 
        class Factory {
4
 
                static function Database() {
5
 
                        global $configuration;
6
 
 
7
 
                        $db = new mysqli($configuration['database']['server'], $configuration['database']['username'], $configuration['database']['password'], $configuration['database']['database']);
8
 
                        $db->set_charset ('utf8');
9
 
                        return $db;
10
 
                }
11
 
        }
 
 
b'\\ No newline at end of file'