Created
July 26, 2010 05:21
-
-
Save tsnoad/490210 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
//tabular.php line 2856 | |
case "editsquidconstraint": | |
$output->title = "Edit Constraint"; | |
$output->title_desc = ""; | |
$output->data .= Tabular_view::view_editconstraint($blah); | |
break; | |
//theme.php line 139 | |
if (isset($data->title)) { | |
$main .= "<h2>".ucwords($data->title)."</h2>"; | |
if (isset($data->title_desc)) { | |
$main .= "<p class='h2attach'>".$data->title_desc."</p>"; | |
} | |
} | |
//setting and getting $output->title_desc like this creates problems. why not use empty() instead of isset()? | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment