Changeset 2790275
- Timestamp:
- 09/26/2022 12:42:54 PM (3 years ago)
- Location:
- taboola
- Files:
-
- 6 edited
-
tags/1.0.12/readme.txt (modified) (2 diffs)
-
tags/1.0.12/settings.php (modified) (2 diffs)
-
tags/1.0.12/simple_html_dom.php (modified) (5 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/settings.php (modified) (2 diffs)
-
trunk/simple_html_dom.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
taboola/tags/1.0.12/readme.txt
r2790272 r2790275 6 6 Stable tag: trunk 7 7 License: GNU General Public License v3.0 8 License URI: http ://www.gnu.org/licenses/gpl-3.0.txt8 License URI: https://www.gnu.org/licenses/gpl-3.0.txt 9 9 10 10 Use the Taboola widget to generate revenue from 3rd-party content and increase engagement. … … 66 66 * Minor fix for PHP 8.0.x 67 67 68 69 68 = 1.0.11 = 70 69 * Support for PHP 8.0.x -
taboola/tags/1.0.12/settings.php
r2790272 r2790275 126 126 <td colspan='2' style='line-height: 26px; font-size: 13px;'> 127 127 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> 129 129 </td> 130 130 </tr> … … 216 216 </table> 217 217 <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> --> 219 219 </form> 220 220 <div style='clear:both'></div> -
taboola/tags/1.0.12/simple_html_dom.php
r2790272 r2790275 1 1 <?php 2 2 /** 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/ 5 5 * Acknowledge: Jose Solorzano (https://sourceforge.net/projects/php-html/) 6 6 * Contributions by: … … 1034 1034 if ($str) 1035 1035 { 1036 if (preg_match("/^http :\/\//i",$str) || is_file($str))1036 if (preg_match("/^https:\/\//i",$str) || is_file($str)) 1037 1037 { 1038 1038 $this->load_file($str); … … 1066 1066 // strip out comments 1067 1067 $this->remove_noise("'<!--(.*?)-->'is"); 1068 // Per sourceforge http ://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=10440371068 // Per sourceforge https://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037 1069 1069 // Script tags removal now preceeds style tag removal. 1070 1070 // strip out <script> tags … … 1222 1222 if (empty($charset)) 1223 1223 { 1224 $el = $this->root->find('meta[http -equiv=Content-Type]',0, true);1224 $el = $this->root->find('meta[https-equiv=Content-Type]',0, true); 1225 1225 if (!empty($el)) 1226 1226 { … … 1507 1507 protected function parse_attr($node, $name, &$space) 1508 1508 { 1509 // Per sourceforge: http ://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=10440371509 // Per sourceforge: https://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037 1510 1510 // If the attribute is already defined inside a tag, only pay atetntion to the first one as opposed to the last one. 1511 1511 if (isset($node->attr[$name])) -
taboola/trunk/readme.txt
r2790268 r2790275 6 6 Stable tag: trunk 7 7 License: GNU General Public License v3.0 8 License URI: http ://www.gnu.org/licenses/gpl-3.0.txt8 License URI: https://www.gnu.org/licenses/gpl-3.0.txt 9 9 10 10 Use the Taboola widget to generate revenue from 3rd-party content and increase engagement. … … 66 66 * Minor fix for PHP 8.0.x 67 67 68 69 68 = 1.0.11 = 70 69 * Support for PHP 8.0.x -
taboola/trunk/settings.php
r2790264 r2790275 126 126 <td colspan='2' style='line-height: 26px; font-size: 13px;'> 127 127 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> 129 129 </td> 130 130 </tr> … … 216 216 </table> 217 217 <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> --> 219 219 </form> 220 220 <div style='clear:both'></div> -
taboola/trunk/simple_html_dom.php
r2790264 r2790275 1 1 <?php 2 2 /** 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/ 5 5 * Acknowledge: Jose Solorzano (https://sourceforge.net/projects/php-html/) 6 6 * Contributions by: … … 1034 1034 if ($str) 1035 1035 { 1036 if (preg_match("/^http :\/\//i",$str) || is_file($str))1036 if (preg_match("/^https:\/\//i",$str) || is_file($str)) 1037 1037 { 1038 1038 $this->load_file($str); … … 1066 1066 // strip out comments 1067 1067 $this->remove_noise("'<!--(.*?)-->'is"); 1068 // Per sourceforge http ://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=10440371068 // Per sourceforge https://sourceforge.net/tracker/?func=detail&aid=2949097&group_id=218559&atid=1044037 1069 1069 // Script tags removal now preceeds style tag removal. 1070 1070 // strip out <script> tags … … 1222 1222 if (empty($charset)) 1223 1223 { 1224 $el = $this->root->find('meta[http -equiv=Content-Type]',0, true);1224 $el = $this->root->find('meta[https-equiv=Content-Type]',0, true); 1225 1225 if (!empty($el)) 1226 1226 { … … 1507 1507 protected function parse_attr($node, $name, &$space) 1508 1508 { 1509 // Per sourceforge: http ://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=10440371509 // Per sourceforge: https://sourceforge.net/tracker/?func=detail&aid=3061408&group_id=218559&atid=1044037 1510 1510 // If the attribute is already defined inside a tag, only pay atetntion to the first one as opposed to the last one. 1511 1511 if (isset($node->attr[$name]))
Note: See TracChangeset
for help on using the changeset viewer.