Skip to content

Instantly share code, notes, and snippets.

@ljank
Created August 22, 2013 11:31
Show Gist options
  • Save ljank/6306076 to your computer and use it in GitHub Desktop.
Save ljank/6306076 to your computer and use it in GitHub Desktop.
<?php
// WTF spotted in production code
class Page {
var $history_yes = true;
/* ... */
function history_yes($no = true) {
$this->history_yes = !$no;
}
}
@ajanauskas
Copy link

:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment