Skip to content

Commit

Permalink
Small typo correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsauvage committed Feb 24, 2013
1 parent 51dc5f2 commit 6b089b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function deletePaste($pasteid)
if ($opendiscussion!='0') { $meta['opendiscussion']=true; }
}

// Show we use syntax coloring when displaying ?
// Should we use syntax coloring when displaying ?
if (!empty($_POST['syntaxcoloring']))
{
$syntaxcoloring = $_POST['syntaxcoloring'];
Expand Down Expand Up @@ -231,7 +231,7 @@ function deletePaste($pasteid)
// Add post date to meta.
$meta['postdate']=time();

// We just want a small hash to avoid collisions: Half-MD5 (64 bits) will do the trick
// We just want a small hash to avoid collisions: Half-MD5 (64 bits) will do the trick.
$dataid = substr(hash('md5',$data),0,16);

$is_comment = (!empty($_POST['parentid']) && !empty($_POST['pasteid'])); // Is this post a comment ?
Expand Down

0 comments on commit 6b089b4

Please sign in to comment.