From: Kevin Day Date: Tue, 30 Jul 2013 05:55:06 +0000 (-0500) Subject: Bugfix: rename functions that should be kit_core_* and not standard_* X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=67e08eef7aada6a1eb136cf1255dc7b4708133b1;p=kit-legacy Bugfix: rename functions that should be kit_core_* and not standard_* --- diff --git a/sources/sh/kit-core b/sources/sh/kit-core index 30aa5c6..720e4d7 100755 --- a/sources/sh/kit-core +++ b/sources/sh/kit-core @@ -125,11 +125,11 @@ kit_core_directory_ending(){ echo -n $(echo $i | sed -e 's|/*$|/|') } -standard_datetimestamp(){ +kit_core_datetimestamp(){ echo -n $(date +%Y-%m-%dT%H:%M:%S%z) } -standard_datetimestamp_safe(){ +kit_core_datetimestamp_safe(){ echo -n $(date +%Y_%m_%d-%H_%M_%S%z) }