Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ First, back up your system! This install process will patch (__Read__: ___Perman

Clone the latest release version (i.e. replace **v2.0.4** below with the latest release version) to the hooks folder:
```
sudo git clone --branch v2.0.4 https://github.com/virtuosoft-dev/hestiacp-pluginable /etc/hestiacp/hooks
sudo git clone https://github.com/sharklatan/hestiacp-pluginable /etc/hestiacp/hooks
```

Run the post_install.sh script:
Expand Down
2 changes: 2 additions & 0 deletions pluginable.php
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ public function append() {
$xpath = $this->do_action( 'hcpp_all_xpath', $xpath );
$dom = $xpath->document;
$html = $dom->saveHTML();
$html = html_entity_decode($html, ENT_QUOTES | ENT_HTML5, "UTF-8");
$html = str_replace(["=","."], ["=","."], $html);

// Run the path specific actions for html
if ( $path != 'index.php' ) {
Expand Down