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;
}
}
@redross
Copy link

redross commented Aug 22, 2013

:D

@spajus
Copy link

spajus commented Aug 22, 2013

slow 👏

@ajanauskas
Copy link

:)

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