Plugin Directory

Changeset 2790275


Ignore:
Timestamp:
09/26/2022 12:42:54 PM (3 years ago)
Author:
taboolawordpress
Message:

More Fixes.

Location:
taboola
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • taboola/tags/1.0.12/readme.txt

    r2790272 r2790275  
    66Stable tag: trunk
    77License: GNU General Public License v3.0
    8 License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     8License URI: https://www.gnu.org/licenses/gpl-3.0.txt
    99
    1010Use the Taboola widget to generate revenue from 3rd-party content and increase engagement.
     
    6666* Minor fix for PHP 8.0.x
    6767
    68 
    6968= 1.0.11 =
    7069* Support for PHP 8.0.x
  • taboola/tags/1.0.12/settings.php

    r2790272 r2790275  
    126126                <td colspan='2' style='line-height: 26px; font-size: 13px;'>
    127127                    Don't have a Publisher ID?
    128                     <a style='float: inherit; margin-left:5px;' class='request_link' href=' http://taboola.com/contact' target='_blank'>Contact Taboola</a>
     128                    <a style='float: inherit; margin-left:5px;' class='request_link' href=' https://taboola.com/contact' target='_blank'>Contact Taboola</a>
    129129                </td>
    130130            </tr>
     
    216216        </table>
    217217        <input class='button-secondary apply_button' type="submit" value="Apply Changes ✔"/>
    218         <!--         <a class='request_link' href=' http://taboola.com/contact' target='_blank'>Request Widget</a> -->
     218        <!--         <a class='request_link' href=' https://taboola.com/contact' target='_blank'>Request Widget</a> -->
    219219    </form>
    220220    <div style='clear:both'></div>
  • taboola/tags/1.0.12/simple_html_dom.php

    r2790272 r2790275  
    11<?php
    22/**
    3  * Website: http://sourceforge.net/projects/simplehtmldom/
    4  * Additional projects that may be used: http://sourceforge.net/projects/debugobject/
     3 * Website: https://sourceforge.net/projects/simplehtmldom/
     4 * Additional projects that may be used: https://sourceforge.net/projects/debugobject/
    55 * Acknowledge: Jose Solorzano (https://sourceforge.net/projects/php-html/)
    66 * Contributions by:
     
    10341034        if ($str)
    10351035        {
    1036             if (preg_match("/^http:\/\//i",$str) || is_file($str))
     1036            if (preg_match("/^https:\/\//i",$str) || is_file($str))
    10371037            {
    10381038                $this->load_file($str);
     
    10661066        // strip out comments
    10671067        $this->remove_noise("'<!--(.*?)-->'is");
    1068         // Per sourceforge http://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037
     1068        // Per sourceforge https://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037
    10691069        // Script tags removal now preceeds style tag removal.
    10701070        // strip out <script> tags
     
    12221222        if (empty($charset))
    12231223        {
    1224             $el = $this->root->find('meta[http-equiv=Content-Type]',0, true);
     1224            $el = $this->root->find('meta[https-equiv=Content-Type]',0, true);
    12251225            if (!empty($el))
    12261226            {
     
    15071507    protected function parse_attr($node, $name, &$space)
    15081508    {
    1509         // Per sourceforge: http://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037
     1509        // Per sourceforge: https://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037
    15101510        // If the attribute is already defined inside a tag, only pay atetntion to the first one as opposed to the last one.
    15111511        if (isset($node->attr[$name]))
  • taboola/trunk/readme.txt

    r2790268 r2790275  
    66Stable tag: trunk
    77License: GNU General Public License v3.0
    8 License URI: http://www.gnu.org/licenses/gpl-3.0.txt
     8License URI: https://www.gnu.org/licenses/gpl-3.0.txt
    99
    1010Use the Taboola widget to generate revenue from 3rd-party content and increase engagement.
     
    6666* Minor fix for PHP 8.0.x
    6767
    68 
    6968= 1.0.11 =
    7069* Support for PHP 8.0.x
  • taboola/trunk/settings.php

    r2790264 r2790275  
    126126                <td colspan='2' style='line-height: 26px; font-size: 13px;'>
    127127                    Don't have a Publisher ID?
    128                     <a style='float: inherit; margin-left:5px;' class='request_link' href=' http://taboola.com/contact' target='_blank'>Contact Taboola</a>
     128                    <a style='float: inherit; margin-left:5px;' class='request_link' href=' https://taboola.com/contact' target='_blank'>Contact Taboola</a>
    129129                </td>
    130130            </tr>
     
    216216        </table>
    217217        <input class='button-secondary apply_button' type="submit" value="Apply Changes ✔"/>
    218         <!--         <a class='request_link' href=' http://taboola.com/contact' target='_blank'>Request Widget</a> -->
     218        <!--         <a class='request_link' href=' https://taboola.com/contact' target='_blank'>Request Widget</a> -->
    219219    </form>
    220220    <div style='clear:both'></div>
  • taboola/trunk/simple_html_dom.php

    r2790264 r2790275  
    11<?php
    22/**
    3  * Website: http://sourceforge.net/projects/simplehtmldom/
    4  * Additional projects that may be used: http://sourceforge.net/projects/debugobject/
     3 * Website: https://sourceforge.net/projects/simplehtmldom/
     4 * Additional projects that may be used: https://sourceforge.net/projects/debugobject/
    55 * Acknowledge: Jose Solorzano (https://sourceforge.net/projects/php-html/)
    66 * Contributions by:
     
    10341034        if ($str)
    10351035        {
    1036             if (preg_match("/^http:\/\//i",$str) || is_file($str))
     1036            if (preg_match("/^https:\/\//i",$str) || is_file($str))
    10371037            {
    10381038                $this->load_file($str);
     
    10661066        // strip out comments
    10671067        $this->remove_noise("'<!--(.*?)-->'is");
    1068         // Per sourceforge http://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037
     1068        // Per sourceforge https://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037
    10691069        // Script tags removal now preceeds style tag removal.
    10701070        // strip out <script> tags
     
    12221222        if (empty($charset))
    12231223        {
    1224             $el = $this->root->find('meta[http-equiv=Content-Type]',0, true);
     1224            $el = $this->root->find('meta[https-equiv=Content-Type]',0, true);
    12251225            if (!empty($el))
    12261226            {
     
    15071507    protected function parse_attr($node, $name, &$space)
    15081508    {
    1509         // Per sourceforge: http://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037
     1509        // Per sourceforge: https://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037
    15101510        // If the attribute is already defined inside a tag, only pay atetntion to the first one as opposed to the last one.
    15111511        if (isset($node->attr[$name]))
Note: See TracChangeset for help on using the changeset viewer.