Skip to content

Commit b530338

Browse files
committed
Implement EthicalAds as StickyBox
1 parent 4eb5b13 commit b530338

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

_layouts/blog-single.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ <h4>Published: {{page.date | date: "%B %-d, %Y"}}</h4>
1414
</ul>
1515
</div>
1616
{% endif %}
17-
<div data-ea-publisher="maxchadwick-xyzblog" class="horizontal" data-ea-type="image"></div>
17+
<div data-ea-publisher="maxchadwick-xyzblog" data-ea-type="image" data-ea-style="stickybox"></div>
1818
<div class="improve-link">
1919
:pencil2: <a href="{{ site.github.repository_url }}/edit/master/{{ page.path }}">Improve this page on GitHub</a>
2020
</div>

_posts/2017-07-19-parsing-set-cookie-headers-in-php-with-guzzle.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags: [PHP]
88
ad: domain-clamp-ad-b.html
99
---
1010

11-
I recently had the need to extract the value of a Set-Cookie response header in PHP. Google lead me [`http_parse_cookie`](http://php.net/manual/fa/function.http-parse-cookie.php). Unfortunately, `http_parse_cookie` requires `pecl_http` which isn't available with PHP out of box, and is a pain to install.
11+
I recently had the need to extract the value of a Set-Cookie response header in PHP. Google lead me [`http_parse_cookie`](https://github.com/m6w6/ext-http/commit/9f564f1bb81519679a4cb362b868e9b1f93cd8a8). Unfortunately, `http_parse_cookie` requires `pecl_http` which isn't available with PHP out of box, and is a pain to install.
1212

1313
Other Google results suggest [defining your own function](https://gist.github.com/pokeb/10590).
1414

0 commit comments

Comments
 (0)