Skip to content

Commit

Permalink
Fix access of undefined variable when editing project documentation
Browse files Browse the repository at this point in the history
Fixes #22506
  • Loading branch information
atrol committed Mar 13, 2017
1 parent c628e09 commit e315852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proj_doc_edit_page.php
Expand Up @@ -85,7 +85,7 @@
<div class="form-container">
<form method="post" enctype="multipart/form-data" action="proj_doc_update.php">
<?php echo form_security_field( 'proj_doc_update' ) ?>
<input type="hidden" name="file_id" value="<?php echo $f_file_id ?>"/>
<input type="hidden" name="file_id" value="<?php echo $t_file_id ?>"/>
<div class="widget-box widget-color-blue2">
<div class="widget-header widget-header-small">
<h4 class="widget-title lighter">
Expand Down

0 comments on commit e315852

Please sign in to comment.