We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have changed the $toLine placement from the left to the right in inline.php on line number 131.
From:
foreach($change['changed']['lines'] as $no => $line) { $toLine = $change['changed']['offset'] + $no + 1; $html .= '<tr>'; $html .= '<th>'.$toLine.'</th>'; $html .= '<th> </th>'; $html .= '<td class="Right"><span>'.$line.'</span></td>'; $html .= '</tr>'; }
To:
foreach($change['changed']['lines'] as $no => $line) { $toLine = $change['changed']['offset'] + $no + 1; $html .= '<tr>'; $html .= '<th> </th>'; $html .= '<th>'.$toLine.'</th>'; $html .= '<td class="Right"><span>'.$line.'</span></td>'; $html .= '</tr>'; }
The text was updated successfully, but these errors were encountered:
PR in #17
Sorry, something went wrong.
No branches or pull requests
I have changed the $toLine placement from the left to the right in inline.php on line number 131.
From:
To:
The text was updated successfully, but these errors were encountered: