Skip to content

Commit

Permalink
fixed some doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
splitbrain committed Feb 14, 2014
1 parent 343aa17 commit 16ad3fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inc/form.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ function replaceElement($pos, $elem) {
* Gets the position of the first of a type of element.
*
* @param string $type Element type to look for.
* @return array pseudo-element if found, false otherwise
* @return int position of element if found, otherwise false
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function findElementByType($type) {
Expand All @@ -193,7 +193,7 @@ function findElementByType($type) {
* Gets the position of the element with an ID attribute.
*
* @param string $id ID of the element to find.
* @return array pseudo-element if found, false otherwise
* @return int position of element if found, otherwise false
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function findElementById($id) {
Expand All @@ -211,7 +211,7 @@ function findElementById($id) {
*
* @param string $name Attribute name.
* @param string $value Attribute value.
* @return array pseudo-element if found, false otherwise
* @return int position of element if found, otherwise false
* @author Tom N Harris <tnharris@whoopdedo.org>
*/
function findElementByAttribute($name, $value) {
Expand Down
Empty file added lib/plugins/authad/action.php
Empty file.

2 comments on commit 16ad3fa

@selfthinker
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is there an empty action.php file?

@splitbrain
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good question. no idea. I probably had already started working on #541 and my IDE tendsto auto-add new files to git staging :-/

Please sign in to comment.