plugins/br-in-subcurrent: brInSubcurrent.jplug.php

File brInSubcurrent.jplug.php, 179 bytes (added by driehle, 4 years ago)

Updated version (Bugfix)

Line 
1<?php
2
3class brInSubcurrent extends JlogPlugin
4{
5        function hook_onUpdate($data)
6        {
7                $data['sub'] = str_replace(" <a", "<br /><a", $data['sub']);
8                return $data;
9        }
10}
11?>